fix: do not fallback to latest if pnpm version is missing #216
Workflow file for this run
This file contains 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: CI - integration test yarn | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
name: Nx Cloud - Main Job | |
uses: ./.github/workflows/nx-cloud-main.yml | |
with: | |
working-directory: ./integration-tests/yarn | |
parallel-commands: | | |
yarn nx format:check | |
parallel-commands-on-agents: | | |
yarn nx affected --target=lint --parallel=3 | |
yarn nx affected --target=test --parallel=3 --ci --code-coverage | |
yarn nx affected --target=build --parallel=3 | |
agents: | |
name: Nx Cloud - Agents | |
uses: ./.github/workflows/nx-cloud-agents.yml | |
with: | |
working-directory: ./integration-tests/yarn | |
number-of-agents: 3 |