Skip to content

Fixed incorrect path to github files in gh action yml files #13

Fixed incorrect path to github files in gh action yml files

Fixed incorrect path to github files in gh action yml files #13

Workflow file for this run

name: Test 🧪
on:
workflow_dispatch:
pull_request:
push:
paths:
- 'lib/src/**'
- '.github/**'
- '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 }}