Skip to content

Commit bc3b3ec

Browse files
fix pnpm version
1 parent 80e3f0a commit bc3b3ec

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/expo-build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
- name: Setup pnpm
2929
uses: pnpm/action-setup@v3
3030
with:
31-
version: 10.12.1
31+
# Keep in sync with pnpm version in package.json etc.
32+
# Can we use corepack to init pnpm? That would reduce maintenance.
33+
version: 10.15.0
3234
- name: Install dependencies
3335
run: pnpm install --frozen-lockfile
3436
- name: ESLint check
@@ -46,7 +48,9 @@ jobs:
4648
- name: Setup pnpm
4749
uses: pnpm/action-setup@v3
4850
with:
49-
version: 10.12.1
51+
# Keep in sync with pnpm version in package.json etc.
52+
# Can we use corepack to init pnpm? That would reduce maintenance.
53+
version: 10.15.0
5054
- name: Install dependencies
5155
run: pnpm install --frozen-lockfile
5256
- name: Prettier formatting check
@@ -64,7 +68,9 @@ jobs:
6468
- name: Setup pnpm
6569
uses: pnpm/action-setup@v3
6670
with:
67-
version: 10.12.1
71+
# Keep in sync with pnpm version in package.json etc.
72+
# Can we use corepack to init pnpm? That would reduce maintenance.
73+
version: 10.15.0
6874
- name: Install dependencies
6975
run: pnpm install --frozen-lockfile
7076
- name: TypeScript type check

0 commit comments

Comments
 (0)