diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 21b3406..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: tests -on: - push: - branches-ignore: [main] - workflow_dispatch: - -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 - - # Uncomment to enable NUT testing in Github Actions - # 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 }}