Skip to content

[MOB-9674] new-fix-integration-tests #48

[MOB-9674] new-fix-integration-tests

[MOB-9674] new-fix-integration-tests #48

Workflow file for this run

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