Skip to content

refactor: set control flow #18

refactor: set control flow

refactor: set control flow #18

Workflow file for this run

name: Run test-coverage
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
# pipeline actions
- run: npm install
- run: npm run test:cov
- run: ./node_modules/.bin/codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}