File tree 2 files changed +35
-1
lines changed 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "main" ]
6
+ pull_request :
7
+ branches : [ "main" ]
8
+
9
+ env :
10
+ # we call `pnpm playwright install` instead
11
+ PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD : ' 1'
12
+
13
+ jobs :
14
+ build :
15
+
16
+ runs-on : ubuntu-latest
17
+
18
+ strategy :
19
+ matrix :
20
+ node-version : [18.x]
21
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
22
+
23
+ steps :
24
+ - uses : actions/checkout@v3
25
+
26
+ - name : Use Node.js ${{ matrix.node-version }}
27
+ uses : actions/setup-node@v3
28
+ with :
29
+ node-version : ${{ matrix.node-version }}
30
+ cache : ' pnpm'
31
+ - run : pnpm install --frozen-lockfile
32
+ - run : pnpm playwright install chromium
33
+ - run : pnpm test
Original file line number Diff line number Diff line change 43
43
"prism-svelte" : " ^0.5.0" ,
44
44
"prismjs" : " ^1.29.0" ,
45
45
"ws" : " ^8.12.1"
46
- }
46
+ },
47
+ "packageManager" :
" [email protected] "
47
48
}
You can’t perform that action at this time.
0 commit comments