Skip to content

Merge pull request #2 from rbonestell/fix/outstanding-vulns #26

Merge pull request #2 from rbonestell/fix/outstanding-vulns

Merge pull request #2 from rbonestell/fix/outstanding-vulns #26

Workflow file for this run

name: Test 🧪
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
paths:
- 'lib/src/**'
- '.github/workflows/test.yml'
- 'package.json'
- 'tsconfig.json'
- 'jest.config.js'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- run: npm install
- name: Run Unit Tests
run: npm run test:cov
- name: Upload Test Coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}