File tree Expand file tree Collapse file tree 3 files changed +24
-16
lines changed Expand file tree Collapse file tree 3 files changed +24
-16
lines changed Original file line number Diff line number Diff line change 9
9
timeout-minutes : 60
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v4
13
- - uses : actions/setup-node@v4
14
- with :
15
- node-version : 18
16
- - name : Install dependencies
17
- run : npm ci
18
- - name : Install Playwright Browsers
19
- run : npx playwright install --with-deps
20
- - name : Run Playwright tests
21
- run : npx playwright test
22
- - uses : actions/upload-artifact@v4
23
- if : ${{ !cancelled() }}
24
- with :
25
- name : playwright-report
26
- path : playwright-report/
27
- retention-days : 30
12
+ - uses : actions/checkout@v4
13
+ - uses : actions/setup-node@v4
14
+ with :
15
+ node-version : lts/*
16
+ - name : Install dependencies
17
+ run : npm ci
18
+ - name : Install Playwright Browsers
19
+ run : npx playwright install --with-deps
20
+ - name : Run Playwright tests
21
+ run : npx playwright test
22
+ - uses : actions/upload-artifact@v4
23
+ if : always()
24
+ with :
25
+ name : playwright-report
26
+ path : playwright-report/
27
+ retention-days : 30
Original file line number Diff line number Diff line change @@ -7,3 +7,7 @@ phpunit.xml.bak
7
7
coverage /
8
8
node_modules /
9
9
vendor /
10
+ /test-results /
11
+ /playwright-report /
12
+ /blob-report /
13
+ /playwright /.cache /
Original file line number Diff line number Diff line change 8
8
"less" : " ^4.2.0" ,
9
9
"less-plugin-clean-css" : " ^1.5.1" ,
10
10
"uglify-js" : " ^3.17.4"
11
+ },
12
+ "devDependencies" : {
13
+ "@playwright/test" : " ^1.44.0" ,
14
+ "@types/node" : " ^20.12.11"
11
15
}
12
16
}
You can’t perform that action at this time.
0 commit comments