update github actions #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Controller Tests | |
on: | |
push: | |
paths: | |
- 'src/controllers/**/*.ts' | |
- 'src/**/*.spec.ts' | |
branches: [main, development] | |
pull_request: | |
paths: | |
- 'src/controllers/**/*.ts' | |
- 'src/**/*.spec.ts' | |
branches: [main, development] | |
jobs: | |
controller-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run init | |
- run: npm test -- controllers | |
- name: Collect code coverage for controllers | |
run: npm run test:cov -- controllers | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage/unit/controllers/clover.xml | |
flags: unittests_controllers | |
name: codecov-controllers | |
fail_ci_if_error: true | |
verbose: true |