Skip to content

Commit

Permalink
ci: add job for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Jul 10, 2023
1 parent 3c4ccdc commit 9fe4e4f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,23 @@ jobs:
run: pnpm run format:check
- name: Lint
run: pnpm run lint

unit:
runs-on: ubuntu-latest
needs: static-analysis
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --prefer-offline
- name: Run unit tests
run: pnpm run test

0 comments on commit 9fe4e4f

Please sign in to comment.