ci: add build step before type check

This commit is contained in:
Hakadao
2024-05-03 12:59:04 +08:00
parent eba0759706
commit 9aa95b915c

View File

@@ -42,7 +42,9 @@ jobs:
- name: Type check
if: ${{ matrix.os == 'ubuntu-latest' }}
run: pnpm run typecheck
run: |
pnpm run build
pnpm run typecheck
- name: Build
run: pnpm run build