File tree 3 files changed +15
-10
lines changed
3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 26
26
- name : Set alternate npm integrity keys
27
27
run : |
28
28
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
29
+
29
30
- uses : actions/checkout@v4
30
31
31
32
- run : corepack enable
Original file line number Diff line number Diff line change @@ -26,20 +26,22 @@ jobs:
26
26
- name : Set alternate npm integrity keys
27
27
run : |
28
28
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
29
+
29
30
- uses : actions/checkout@v4
30
31
31
32
- run : corepack enable
33
+
32
34
- uses : actions/setup-node@v4
33
35
with :
34
36
node-version : 23
35
37
cache : pnpm
36
- - run : pnpm install
37
38
38
- - name : Cypress install
39
- uses : cypress-io/github-action@v6
39
+ - uses : actions/cache@v4
40
40
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
43
45
44
46
- name : Build
45
47
run : pnpm run build
Original file line number Diff line number Diff line change @@ -26,20 +26,22 @@ jobs:
26
26
- name : Set alternate npm integrity keys
27
27
run : |
28
28
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
29
+
29
30
- uses : actions/checkout@v4
30
31
31
32
- run : corepack enable
33
+
32
34
- uses : actions/setup-node@v4
33
35
with :
34
36
node-version : 23
35
37
cache : pnpm
36
- - run : pnpm install
37
38
38
- - name : Cypress install
39
- uses : cypress-io/github-action@v6
39
+ - uses : actions/cache@v4
40
40
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
43
45
44
46
- name : Build
45
47
run : pnpm run build
You can’t perform that action at this time.
0 commit comments