Thanks to visit codestin.com Credit goes to github.com
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 f9c3647 commit 5feb2dbCopy full SHA for 5feb2db
.github/actions/prepare-install/action.yml
@@ -31,7 +31,9 @@ runs:
31
- uses: actions/cache@v3
32
id: yarn-cache
33
with:
34
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
+ path: |
35
+ ${{ steps.yarn-cache-dir-path.outputs.dir }}
36
+ ~/.cache/Cypress
37
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
38
restore-keys: |
39
${{ runner.os }}-yarn-
.github/workflows/ci.yml
@@ -193,6 +193,9 @@ jobs:
193
- name: Build
194
uses: ./.github/actions/prepare-build
195
196
+ - name: Install Cypress
197
+ run: yarn cypress install
198
+
199
- name: Cypress run
200
uses: cypress-io/github-action@v2
201
0 commit comments