[MOB-9674] new-fix-integration-tests #48
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: Unit Tests | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
test-comment: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel runs from previous PRs | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
cancel_others: 'true' | |
concurrent_skipping: 'outdated_runs' | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Run tests | |
run: | | |
yarn test --coverage --coverageReporters json-summary | |
- name: Test coverage comment | |
id: coverageComment | |
uses: MishaKav/jest-coverage-comment@main | |
with: | |
hide-comment: false | |
coverage-summary-path: ./coverage/coverage-summary.json | |
test-code-climate: | |
name: Upload unit test results to Code Climate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel runs from previous PRs | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
cancel_others: 'true' | |
concurrent_skipping: 'outdated_runs' | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Run tests | |
run: | | |
yarn test --coverage --coverageReporters lcov | |
- name: Upload coverage to Code Climate | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: yarn test --coverage --coverageReporters lcov | |
coverageLocations: | | |
${{github.workspace}}/coverage/lcov.info:lcov |