Skip to content

Commit f80689d

Browse files
committed
ci: move cypress install step
1 parent a4cf654 commit f80689d

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

.github/workflows/test-e2e-composable.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ jobs:
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
2929
- uses: actions/checkout@v4
3030

31-
- name: Cypress install
32-
uses: cypress-io/github-action@v6
33-
with:
34-
# Disable running of tests within install job
35-
runTests: false
3631

3732
- run: corepack enable
3833
- uses: actions/setup-node@v4
@@ -41,6 +36,11 @@ jobs:
4136
cache: pnpm
4237
- run: pnpm install
4338

39+
- name: Cypress install
40+
uses: cypress-io/github-action@v6
41+
with:
42+
# Disable running of tests within install job
43+
runTests: false
4444
- name: Build
4545
run: pnpm run build
4646

.github/workflows/test-e2e-options.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ jobs:
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
2929
- uses: actions/checkout@v4
3030

31-
- name: Cypress install
32-
uses: cypress-io/github-action@v6
33-
with:
34-
# Disable running of tests within install job
35-
runTests: false
36-
3731
- run: corepack enable
3832
- uses: actions/setup-node@v4
3933
with:
4034
node-version: 23
4135
cache: pnpm
4236
- run: pnpm install
4337

38+
- name: Cypress install
39+
uses: cypress-io/github-action@v6
40+
with:
41+
# Disable running of tests within install job
42+
runTests: false
43+
4444
- name: Build
4545
run: pnpm run build
4646

.github/workflows/test-e2e-ssr.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ jobs:
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
2929
- uses: actions/checkout@v4
3030

31-
- name: Cypress install
32-
uses: cypress-io/github-action@v6
33-
with:
34-
# Disable running of tests within install job
35-
runTests: false
36-
3731
- run: corepack enable
3832
- uses: actions/setup-node@v4
3933
with:
4034
node-version: 23
4135
cache: pnpm
4236
- run: pnpm install
4337

38+
- name: Cypress install
39+
uses: cypress-io/github-action@v6
40+
with:
41+
# Disable running of tests within install job
42+
runTests: false
43+
4444
- name: Build
4545
run: pnpm run build
4646

0 commit comments

Comments
 (0)