Skip to content

Commit a4cf654

Browse files
committed
ci: use cypress install action
1 parent 35fb59c commit a4cf654

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

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

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
run: |
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
2929
- uses: actions/checkout@v4
30+
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+
3037
- run: corepack enable
3138
- uses: actions/setup-node@v4
3239
with:

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

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
run: |
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
2929
- uses: actions/checkout@v4
30+
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+
3037
- run: corepack enable
3138
- uses: actions/setup-node@v4
3239
with:

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

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
run: |
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
2929
- uses: actions/checkout@v4
30+
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+
3037
- run: corepack enable
3138
- uses: actions/setup-node@v4
3239
with:

0 commit comments

Comments
 (0)