Skip to content

Commit

Permalink
Add yasunori web lint job
Browse files Browse the repository at this point in the history
  • Loading branch information
tomoya committed Oct 3, 2024
1 parent c4f6734 commit 654a7fc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,21 @@ jobs:
run: pnpm run lint
- name: Format
run: pnpm biome format
web-lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/web
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9 # package.jsonにpackageManagerをつけてもサブディレクトリのせいか、これがないとエラーになる
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm run typecheck
- name: Lint
run: pnpm run lint
- name: Format
run: pnpm biome format

0 comments on commit 654a7fc

Please sign in to comment.