Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin #229

build(deps-dev): bump @typescript-eslint/eslint-plugin

build(deps-dev): bump @typescript-eslint/eslint-plugin #229

Workflow file for this run

name: Run Jest Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run Jest tests
run: npx jest --verbose ./test/unit/ --coverage
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}