test: refactor old tests and cleanup test helpers (#873) #372
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: Code Coverage | |
on: | |
push: | |
branches: [main] | |
env: | |
NX_NON_NATIVE_HASHER: true | |
jobs: | |
coverage: | |
strategy: | |
fail-fast: false | |
matrix: | |
lib: | |
- cli | |
- core | |
- models | |
- utils | |
- plugin-eslint | |
- plugin-coverage | |
- plugin-js-packages | |
- plugin-lighthouse | |
scope: [unit, integration] | |
name: Update code coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Execute all tests and generate coverage reports | |
run: npx nx run ${{ matrix.lib }}:${{ matrix.scope }}-test --coverage.enabled --skipNxCache | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
directory: coverage/${{ matrix.lib }}/${{ matrix.scope }}-tests/ | |
files: ./lcov.info | |
flags: ${{ matrix.lib }}-${{ matrix.scope }} | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |