Skip to content

Add test pipeline

Add test pipeline #1

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@latest
- uses: actions/setup-node@latest
with:
node-version: 20
cache: "npm"
- run: npm install
- run: npm t -- --coverage
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}