Skip to content

fix: remove codeCoverage field from non-verbose query for package ver… #1367

fix: remove codeCoverage field from non-verbose query for package ver…

fix: remove codeCoverage field from non-verbose query for package ver… #1367

Workflow file for this run

name: tests
on:
push:
branches-ignore: [main]
workflow_dispatch:
env:
ONEGP_TESTKIT_AUTH_URL: ${{secrets.ONEGP_TESTKIT_AUTH_URL}}
jobs:
yarn-lockfile-check:
uses: salesforcecli/github-workflows/.github/workflows/lockFileCheck.yml@main
# Since the Windows unit tests take much longer, we run the linux unit tests first and then run the windows unit tests in parallel with NUTs
linux-unit-tests:
needs: yarn-lockfile-check
uses: salesforcecli/github-workflows/.github/workflows/unitTestsLinux.yml@main
windows-unit-tests:
needs: linux-unit-tests
uses: salesforcecli/github-workflows/.github/workflows/unitTestsWindows.yml@main
nuts:
needs: linux-unit-tests
uses: salesforcecli/github-workflows/.github/workflows/nut.yml@main
secrets: inherit
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
command:
- 'yarn test:nuts:package'
- 'yarn test:nuts:package1'
fail-fast: false
with:
os: ${{ matrix.os }}
command: ${{ matrix.command }}