File tree Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments