Skip to content

Comment out unused steps in Android Detox test workflow for clarity #1217

Comment out unused steps in Android Detox test workflow for clarity

Comment out unused steps in Android Detox test workflow for clarity #1217

# name: Unit Tests
# on:
# push:
# branches:
# - "master"
# pull_request:
# branches:
# - "**"
# jobs:
# test-comment:
# name: Test and show coverage on github
# 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: Test and publish 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