Skip to content

[MOB-9674] fix-integration-tests #1160

[MOB-9674] fix-integration-tests

[MOB-9674] fix-integration-tests #1160

name: Test & Publish code coverage
on: [pull_request]
# on:
# push:
# branches:
# - "master"
# pull_request:
# branches:
# - "**"
jobs:
test-comment:
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:
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