Skip to content

wip

wip #4

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: yarn
- name: Run tests
run: yarn test
- name: Upload coverage to Coveralls
run: cat ./coverage/lcov.info | yarn coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}