Merge pull request #630 from Iterable/MOB-11189-add-disclaimer-about-… #156
This file contains hidden or 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: | |
- 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: | |
- 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 |