We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79daec0 commit 7be6b23Copy full SHA for 7be6b23
.github/workflows/build.yaml
@@ -29,6 +29,11 @@ jobs:
29
restore-keys: cypress-${{ runner.os }}-
30
- name: Install dependencies
31
run: npm ci
32
+ # cypress binary is installed via postinstall script which is blocked with ignore-scripts=true
33
+ # if missing from cache, we need to run it conditionally before saving binary in cache
34
+ - name: Install cypress dependencies
35
+ if: steps.restore-cypress.outputs.cache-hit != 'true'
36
+ run: npx cypress install
37
- name: Save Cypress Binary
38
if: steps.restore-cypress.outputs.cache-hit != 'true'
39
uses: actions/cache/save@v4
.github/workflows/codeql.yml
0 commit comments