Skip to content

Commit c174ffb

Browse files
committed
fix: corepack enable in circleci
1 parent 19f6e27 commit c174ffb

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

.circleci/config.yml

+3-12
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ jobs:
4040
steps:
4141
- checkout
4242
- node/install:
43-
install-yarn: true
44-
install-pnpm: true
4543
node-version: << pipeline.parameters.node-version >>
44+
- run: corepack enable
4645
- bun/install
4746
- deno/install
4847
- run:
@@ -88,9 +87,7 @@ jobs:
8887
SHARD=$((${CIRCLE_NODE_INDEX}+1))
8988
npm run test:ci:e2e -- --shard=${SHARD}/${CIRCLE_NODE_TOTAL}
9089
environment:
91-
NETLIFY_AUTH_TOKEN: $NETLIFY_AUTH_TOKEN
9290
NEXT_VERSION: << parameters.next-version >>
93-
NEXT_RESOLVED_VERSION: $RESOLVED_VERSION
9491
PLAYWRIGHT_BLOB_OUTPUT_NAME:
9592
report-<< parameters.next-version >>-{{ .Environment.CIRCLE_NODE_INDEX }}.zip
9693
- persist_to_workspace:
@@ -111,9 +108,8 @@ jobs:
111108
steps:
112109
- checkout
113110
- node/install:
114-
install-yarn: true
115-
install-pnpm: true
116111
node-version: << pipeline.parameters.node-version >>
112+
- run: corepack enable
117113
- deno/install
118114
- run:
119115
name: Set Deno Version
@@ -156,9 +152,7 @@ jobs:
156152
SHARD=$((${CIRCLE_NODE_INDEX}+1))
157153
npm run test:ci:unit-and-integration -- --shard=${SHARD}/${CIRCLE_NODE_TOTAL}
158154
environment:
159-
NETLIFY_AUTH_TOKEN: $NETLIFY_AUTH_TOKEN
160155
NEXT_VERSION: << parameters.next-version >>
161-
NEXT_RESOLVED_VERSION: $RESOLVED_VERSION
162156
TEMP: /tmp
163157

164158
smoke:
@@ -169,9 +163,8 @@ jobs:
169163
steps:
170164
- checkout
171165
- node/install:
172-
install-yarn: true
173-
install-pnpm: true
174166
node-version: << pipeline.parameters.node-version >>
167+
- run: corepack enable
175168
- deno/install
176169
- run:
177170
name: Set Deno Version
@@ -198,9 +191,7 @@ jobs:
198191
name: Run Smoke Tests
199192
command: npm run test:ci:smoke
200193
environment:
201-
NETLIFY_AUTH_TOKEN: $NETLIFY_AUTH_TOKEN
202194
NEXT_VERSION: << parameters.next-version >>
203-
NEXT_RESOLVED_VERSION: $RESOLVED_VERSION
204195

205196
merge-reports:
206197
parameters:

0 commit comments

Comments
 (0)