File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 9
9
test :
10
10
name : Playwright
11
11
runs-on : ubuntu-24.04
12
+ container :
13
+ image : mcr.microsoft.com/playwright:v1.50.1-noble
12
14
steps :
13
15
- name : Clone repository
14
16
uses : actions/checkout@v4
31
33
- name : Run Playwright tests and generate test report
32
34
run : npm run test:playwright-ct:all
33
35
36
+ - name : Install Playwright Browsers
37
+ run : npx playwright install --with-deps
38
+
34
39
- name : Upload Playwright test report
35
40
uses : actions/upload-artifact@v4
36
41
if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change @@ -24,18 +24,12 @@ jobs:
24
24
- name : Install
25
25
run : npm ci
26
26
27
- - name : Install Playwright Browsers
28
- run : npx playwright install --with-deps
29
-
30
27
- name : Lint
31
28
run : npm run lint
32
29
33
30
- name : Test
34
31
run : npm test
35
32
36
- - name : Test Playwright
37
- run : npm run test:playwright-ct:all
38
-
39
33
- name : Build
40
34
run : npm run build
41
35
You can’t perform that action at this time.
0 commit comments