We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccabc11 commit f8ddf8bCopy full SHA for f8ddf8b
.github/workflows/ci.yml
@@ -35,6 +35,12 @@ jobs:
35
steps:
36
- uses: actions/checkout@v3
37
38
+ - name: Setup cache for Chromium binary
39
+ uses: actions/cache@v3
40
+ with:
41
+ path: ~/.cache/puppeteer/chrome
42
+ key: chromium-${{ hashFiles('pnpm-lock.yaml') }}
43
+
44
- name: Install pnpm
45
uses: pnpm/action-setup@v2
46
@@ -46,12 +52,6 @@ jobs:
52
47
53
- run: pnpm install
48
54
49
- - name: Setup cache for Chromium binary
50
- uses: actions/cache@v3
51
- with:
- path: ~/.cache/puppeteer/chrome
- key: chromium-${{ hashFiles('pnpm-lock.yaml') }}
-
55
- name: Run e2e tests
56
run: pnpm run test-e2e
57
0 commit comments