Skip to content

Commit f3873cd

Browse files
committed
ci: fix
1 parent 1565aff commit f3873cd

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- name: Set alternate npm integrity keys
2727
run: |
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
29+
2930
- uses: actions/checkout@v4
3031

3132
- run: corepack enable

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

+7-5
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,22 @@ jobs:
2626
- name: Set alternate npm integrity keys
2727
run: |
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
29+
2930
- uses: actions/checkout@v4
3031

3132
- run: corepack enable
33+
3234
- uses: actions/setup-node@v4
3335
with:
3436
node-version: 23
3537
cache: pnpm
36-
- run: pnpm install
3738

38-
- name: Cypress install
39-
uses: cypress-io/github-action@v6
39+
- uses: actions/cache@v4
4040
with:
41-
# Disable running of tests within install job
42-
runTests: false
41+
path: ~/.cache/Cypress
42+
key: cypress-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
43+
44+
- run: pnpm install
4345

4446
- name: Build
4547
run: pnpm run build

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

+7-5
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,22 @@ jobs:
2626
- name: Set alternate npm integrity keys
2727
run: |
2828
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
29+
2930
- uses: actions/checkout@v4
3031

3132
- run: corepack enable
33+
3234
- uses: actions/setup-node@v4
3335
with:
3436
node-version: 23
3537
cache: pnpm
36-
- run: pnpm install
3738

38-
- name: Cypress install
39-
uses: cypress-io/github-action@v6
39+
- uses: actions/cache@v4
4040
with:
41-
# Disable running of tests within install job
42-
runTests: false
41+
path: ~/.cache/Cypress
42+
key: cypress-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
43+
44+
- run: pnpm install
4345

4446
- name: Build
4547
run: pnpm run build

0 commit comments

Comments
 (0)