File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,18 @@ jobs:
12
12
with :
13
13
bun-version : 1.1.3
14
14
15
+ - uses : actions/cache@v4
16
+ id : playwright-cache
17
+ with :
18
+ path : /Users/runner/Library/Caches/ms-playwright
19
+ key : ${{ runner.os }}-playwright-1.43.0
20
+
15
21
- name : Install dependencies
16
- run : |
17
- bun install
18
- bun playwright install --with-deps
22
+ run : bun install
23
+
24
+ - name : Install Playwright binaries
25
+ run : bun playwright install --with-deps
26
+ if : steps.playwright-cache.outputs.cache-hit != 'true'
19
27
20
28
- name : Build library
21
29
run : bun build:lib
Original file line number Diff line number Diff line change 22
22
"devDependencies" : {
23
23
"@astrojs/svelte" : " latest" ,
24
24
"@playwright/experimental-ct-svelte" : " latest" ,
25
- "@playwright/test" : " latest " ,
25
+ "@playwright/test" : " 1.43.0 " ,
26
26
"@types/bun" : " latest" ,
27
27
"@types/node" : " latest" ,
28
28
"@types/prettier" : " latest" ,
You can’t perform that action at this time.
0 commit comments