Skip to content

test

test #98

Workflow file for this run

name: test
on:
push:
pull_request:
schedule:
- cron: "0 8 * * *"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Run Unit Tests
run: npm i && npm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}