Skip to content

Commit

Permalink
👷 Run unit tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tolauwae committed Dec 4, 2024
1 parent 2fa3295 commit bf1613c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Tests
on: [ push ]

jobs:
unit:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4

- run: npm i

- name: Run ava unit tests
run: npm run test:ava

0 comments on commit bf1613c

Please sign in to comment.