Skip to content

Commit dbbff41

Browse files
committed
test: screen-reader
1 parent b1e89c8 commit dbbff41

File tree

3 files changed

+6
-17
lines changed

3 files changed

+6
-17
lines changed

.github/actions/playwright-cache/action.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
---
22
name: "Playwright Cache Action"
33
description: "Initialize Playwright Cache"
4-
inputs:
5-
nodeVersion:
6-
description: "Node version"
7-
required: false
8-
default: "20"
94
runs:
105
using: "composite"
116
steps:
@@ -17,9 +12,11 @@ runs:
1712
if [[ $OS == "Windows" ]]; then
1813
echo "CACHE_PATH=C:\Users\runneradmin\AppData\Local\ms-playwright" >> "$GITHUB_ENV"
1914
echo "BROWSER=chromium" >> "$GITHUB_ENV"
15+
echo "OS=windows" >> "$GITHUB_ENV"
2016
else
2117
echo "CACHE_PATH=~/Library/Caches/ms-playwright" >> "$GITHUB_ENV"
2218
echo "BROWSER=webkit" >> "$GITHUB_ENV"
19+
echo "OS=macos" >> "$GITHUB_ENV"
2320
fi
2421
2522
- name: 🆒 Cache Playwright binaries

.github/workflows/02-e2e-screen-reader.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [macos-latest, windows-latest]
17+
os: [macos-13, windows-2022]
1818
framework: [react]
1919
shardIndex: [1, 2]
2020
shardTotal: [2]
@@ -36,7 +36,7 @@ jobs:
3636
- name: 👩‍🔬 Test showcase with Playwright 🎭
3737
working-directory: screen-reader-test
3838
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 }}
4040
4141
- name: 🆙 Upload test results
4242
if: failure()
@@ -45,11 +45,3 @@ jobs:
4545
name: ${{ matrix.framework }}-screen-reader-${{ matrix.os }}-${{ matrix.shardIndex }}
4646
path: ./screen-reader-test/${{ matrix.framework }}-showcase/test-results
4747
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

screen-reader-test/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"private": true,
66
"scripts": {
77
"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"
1010
},
1111
"devDependencies": {
1212
"@guidepup/playwright": "^0.13.2",

0 commit comments

Comments
 (0)