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 254d8fa commit b6b7a48Copy full SHA for b6b7a48
2 files changed
.github/workflows/main.yml
@@ -24,7 +24,17 @@ jobs:
24
with:
25
node-version: 20
26
cache: pnpm
27
- - run: pnpm i
+ - name: Install dependencies
28
+ run: pnpm i
29
+ - name: Cache Cypress binary
30
+ uses: actions/cache@v4
31
+ with:
32
+ path: ~/.cache/Cypress
33
+ key: cypress-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
34
+ restore-keys: |
35
+ cypress-${{ runner.os }}-
36
+ - name: Install Cypress binary
37
+ run: pnpm exec cypress install
38
- run: pnpm test
39
40
automerge:
package.json
@@ -20,6 +20,7 @@
20
"cy:open": "./node_modules/.bin/cypress open",
21
"cy:run": "./node_modules/.bin/cypress run",
22
"lint:js": "eslint . --ext js",
23
+ "prepare": "pnpm build",
"start": "pnpm watch",
"start-test-server": "http-server -p 9002",
"test": "pnpm lint:js && pnpm test:ci",
0 commit comments