Skip to content

Commit aafd7fa

Browse files
committed
centralize pnpm version
1 parent 67d92b7 commit aafd7fa

File tree

4 files changed

+1
-8
lines changed

4 files changed

+1
-8
lines changed

.github/workflows/pr-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ concurrency:
1212

1313
env:
1414
NODE_VERSION: ${{ vars.NODE_VERSION }}
15-
PNPM_VERSION: ${{ vars.PNPM_VERSION }}
1615

1716
jobs:
1817
# Code quality checks (fast, no build required)
@@ -34,7 +33,6 @@ jobs:
3433
- name: Setup pnpm
3534
uses: pnpm/action-setup@v4
3635
with:
37-
version: ${{ env.PNPM_VERSION }}
3836
run_install: false
3937

4038
- name: Get pnpm store directory
@@ -81,7 +79,6 @@ jobs:
8179
- name: Setup pnpm
8280
uses: pnpm/action-setup@v4
8381
with:
84-
version: ${{ env.PNPM_VERSION }}
8582
run_install: false
8683

8784
- name: Get pnpm store directory

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
1111

1212
env:
1313
NODE_VERSION: ${{ vars.NODE_VERSION }}
14-
PNPM_VERSION: ${{ vars.PNPM_VERSION }}
1514

1615
jobs:
1716
release:
@@ -41,7 +40,6 @@ jobs:
4140
- name: Setup pnpm
4241
uses: pnpm/action-setup@v4
4342
with:
44-
version: ${{ env.PNPM_VERSION }}
4543
run_install: false
4644

4745
- name: Get pnpm store directory

.github/workflows/snapshot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ run-name: "Publishing ${{ inputs.snapshot_tag }} for ${{ inputs.packages }} to $
3333

3434
env:
3535
NODE_VERSION: ${{ vars.NODE_VERSION }}
36-
PNPM_VERSION: ${{ vars.PNPM_VERSION }}
3736
IS_CI: true
3837

3938
permissions:
@@ -54,7 +53,6 @@ jobs:
5453
# Setup Node.js and pnpm
5554
- uses: pnpm/action-setup@v4
5655
with:
57-
version: ${{ env.PNPM_VERSION }}
5856
run_install: false
5957

6058
- name: Install Node.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"node": ">=22.0.0",
99
"pnpm": ">=9.0.0"
1010
},
11-
"packageManager": "pnpm@10.6.3",
11+
"packageManager": "pnpm@10.7.1",
1212
"scripts": {
1313
"build": "nx run-many -t build",
1414
"test": "nx run-many -t test",

0 commit comments

Comments
 (0)