Skip to content

Commit

Permalink
ci: add test job
Browse files Browse the repository at this point in the history
  • Loading branch information
QuiiBz committed Dec 29, 2023
1 parent 7dd459a commit 8ef3112
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,20 @@ jobs:
run: pnpm install
- name: Typecheck
run: pnpm typecheck

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Test
run: pnpm test

0 comments on commit 8ef3112

Please sign in to comment.