Skip to content

Revert "init commit" #2

Revert "init commit"

Revert "init commit" #2

Workflow file for this run

name: Quality Maintainers
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
prettier:
name: 'Format Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 'latest'
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run Format check
run: bun run format:fix
eslint:
name: 'ESLint Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 'latest'
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run ESLint check
run: bun run lint
types:
name: 'TypeScript Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 'latest'
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run TypeScript type check
run: bun run type-check