chore: testing #473
Workflow file for this run
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: tests | |
| on: | |
| push: | |
| branches-ignore: [main, 252-patch] | |
| workflow_dispatch: | |
| # UT_DISABLE_NODE_CURRENT variable can disable latest node in github actions | |
| # NODE_VERSION_OVERRIDE will change the set of tests to run on a specific version of node | |
| 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 | |
| with: | |
| skipTsDepCheck: true | |
| 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] | |
| fail-fast: false | |
| with: | |
| os: ${{ matrix.os }} |