Skip to content

test

test #3

Workflow file for this run

name: Coverage
on: [push]
jobs:
coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
# - uses: actions/checkout@v3
# - name: Run tests
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# - run: yarn install
# - run: npm run coverage
- name: Upload Coverage to Codecov
if: always()
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}