fix: do not fallback to latest if pnpm version is missing #210
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 pnpm | |
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/pnpm | |
parallel-commands: | | |
npx nx format:check | |
parallel-commands-on-agents: | | |
npx nx affected --target=lint --parallel=3 | |
npx nx affected --target=test --parallel=3 --ci --code-coverage | |
npx nx affected --target=build --parallel=3 | |
agents: | |
name: Nx Cloud - Agents | |
uses: ./.github/workflows/nx-cloud-agents.yml | |
with: | |
working-directory: ./integration-tests/pnpm | |
number-of-agents: 3 |