Skip to content

fixup! πŸ‘· Add lint to CI #5

fixup! πŸ‘· Add lint to CI

fixup! πŸ‘· Add lint to CI #5

Workflow file for this run

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
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- name: Calculate coverage
run: npm run test:coverage