- [X] Fix parenthesis separator detection - [x] Fix leading dash detection - [x] Migrate existing pnpm normalizer to latest code - [X] Add unit tests for v9 - [X] Dogfooding Pnpm v9 to Nx repo and agents Fixes regression with alias packages introduced via https://github.com/nrwl/nx/pull/23017 ## Benchmarks PNPM v9 Branch (migrated to branch's code) ``` Time (mean ± σ): 3.526 s ± 0.081 s [User: 0.717 s, System: 0.948 s] Range (min … max): 3.390 s … 3.714 s 20 runs ``` Master (running nx 19.1.0-beta.3) ``` Time (mean ± σ): 11.160 s ± 0.112 s [User: 0.799 s, System: 0.979 s] Range (min … max): 10.955 s … 11.379 s 20 runs ``` ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #22850 Fixes #23256 --------- Co-authored-by: James Henry <james@henry.sc>
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
launch-templates:
|
|
linux-medium:
|
|
resource-class: 'docker_linux_amd64/medium+'
|
|
image: 'ubuntu22.04-node20.11-v3'
|
|
env:
|
|
GIT_AUTHOR_EMAIL: test@test.com
|
|
GIT_AUTHOR_NAME: Test
|
|
GIT_COMMITTER_EMAIL: test@test.com
|
|
GIT_COMMITTER_NAME: Test
|
|
SELECTED_PM: 'pnpm'
|
|
NPM_CONFIG_PREFIX: '/home/workflows/.npm-global'
|
|
init-steps:
|
|
- name: Checkout
|
|
uses: 'nrwl/nx-cloud-workflows/v3.6/workflow-steps/checkout/main.yaml'
|
|
- name: Cache restore
|
|
uses: 'nrwl/nx-cloud-workflows/v3.6/workflow-steps/cache/main.yaml'
|
|
env:
|
|
KEY: 'pnpm-lock.yaml'
|
|
PATHS: |
|
|
node_modules
|
|
~/.cache/Cypress
|
|
~/.cache/ms-playwright
|
|
~/.pnpm-store
|
|
BASE_BRANCH: 'master'
|
|
- name: Install e2e deps
|
|
script: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y ca-certificates lsof
|
|
- name: Install Pnpm
|
|
script: |
|
|
npm install -g pnpm@8
|
|
|
|
- name: Pnpm Install
|
|
script: |
|
|
pnpm install --frozen-lockfile
|
|
|
|
- name: Install Browsers
|
|
script: |
|
|
pnpm exec cypress install
|
|
pnpm exec playwright install
|
|
|
|
- name: Install Rust
|
|
script: |
|
|
curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh -s -- -y
|
|
source "$HOME/.cargo/env"
|
|
rustup toolchain install 1.70.0
|
|
|
|
- name: Configure git metadata (needed for lerna smoke tests)
|
|
script: |
|
|
git config --global user.email test@test.com
|
|
git config --global user.name "Test Test"
|
|
|
|
- name: Load Cargo Env
|
|
script: echo "PATH=$HOME/.cargo/bin:$PATH" >> $NX_CLOUD_ENV
|
|
|
|
- name: Install zip and unzip
|
|
script: sudo apt-get -yqq install zip unzip
|