File tree 3 files changed +6
-17
lines changed
3 files changed +6
-17
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
name : " Playwright Cache Action"
3
3
description : " Initialize Playwright Cache"
4
- inputs :
5
- nodeVersion :
6
- description : " Node version"
7
- required : false
8
- default : " 20"
9
4
runs :
10
5
using : " composite"
11
6
steps :
17
12
if [[ $OS == "Windows" ]]; then
18
13
echo "CACHE_PATH=C:\Users\runneradmin\AppData\Local\ms-playwright" >> "$GITHUB_ENV"
19
14
echo "BROWSER=chromium" >> "$GITHUB_ENV"
15
+ echo "OS=windows" >> "$GITHUB_ENV"
20
16
else
21
17
echo "CACHE_PATH=~/Library/Caches/ms-playwright" >> "$GITHUB_ENV"
22
18
echo "BROWSER=webkit" >> "$GITHUB_ENV"
19
+ echo "OS=macos" >> "$GITHUB_ENV"
23
20
fi
24
21
25
22
- name : 🆒 Cache Playwright binaries
Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- os : [macos-latest , windows-latest ]
17
+ os : [macos-13 , windows-2022 ]
18
18
framework : [react]
19
19
shardIndex : [1, 2]
20
20
shardTotal : [2]
36
36
- name : 👩🔬 Test showcase with Playwright 🎭
37
37
working-directory : screen-reader-test
38
38
run : |
39
- npm run test:screen-reader:${{ matrix.os }} -- --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
39
+ npm run test:screen-reader:${{ env.OS }} -- --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
40
40
41
41
- name : 🆙 Upload test results
42
42
if : failure()
45
45
name : ${{ matrix.framework }}-screen-reader-${{ matrix.os }}-${{ matrix.shardIndex }}
46
46
path : ./screen-reader-test/${{ matrix.framework }}-showcase/test-results
47
47
retention-days : 30
48
-
49
- - name : 🆙 Upload recordings
50
- if : failure() && matrix.os == 'macos-latest'
51
- uses : actions/upload-artifact@v4
52
- with :
53
- name : ${{ matrix.framework }}-recordings-${{ matrix.os }}-${{ matrix.shardIndex }}
54
- path : ./screen-reader-test/${{ matrix.framework }}/recordings
55
- retention-days : 30
Original file line number Diff line number Diff line change 5
5
"private" : true ,
6
6
"scripts" : {
7
7
"preview" : " npx http-server ." ,
8
- "test:screen-reader:macos-latest " : " cross-env showcase=react-showcase npx playwright test --config=./playwright.screen-reader.mac.ts" ,
9
- "test:screen-reader:windows-latest " : " cross-env showcase=react-showcase npx playwright test --config=./playwright.screen-reader.win.ts"
8
+ "test:screen-reader:macos" : " cross-env showcase=react-showcase npx playwright test --config=./playwright.screen-reader.mac.ts" ,
9
+ "test:screen-reader:windows" : " cross-env showcase=react-showcase npx playwright test --config=./playwright.screen-reader.win.ts"
10
10
},
11
11
"devDependencies" : {
12
12
"@guidepup/playwright" : " ^0.13.2" ,
You can’t perform that action at this time.
0 commit comments