Skip to content

Commit

Permalink
ci: fix typecheck
Browse files Browse the repository at this point in the history
Signed-off-by: ZTL-UwU <[email protected]>
  • Loading branch information
ZTL-UwU committed Jul 28, 2024
1 parent b5a3d17 commit 8c93913
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
version: 9
run_install: false

- name: Install dependencies
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v1
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 9
run_install: false

- name: Install dependencies
working-directory: .
run: bun i install
run: pnpm i

- name: Run typecheck
run: bun nuxt typecheck
working-directory: .
run: pnpm typecheck

0 comments on commit 8c93913

Please sign in to comment.