Skip to content

Commit f0d03c3

Browse files
committed
test: screen-reader
1 parent ed6cdf3 commit f0d03c3

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

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

+3-6
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ runs:
1111
run: |
1212
if [[ $OS == "Windows" ]]; then
1313
echo "CACHE_PATH=C:\Users\runneradmin\AppData\Local\ms-playwright" >> "$GITHUB_ENV"
14-
echo "BROWSER=chromium firefox" >> "$GITHUB_ENV"
14+
echo "BROWSERS=chromium firefox" >> "$GITHUB_ENV"
1515
echo "OS=windows" >> "$GITHUB_ENV"
1616
else
1717
echo "CACHE_PATH=~/Library/Caches/ms-playwright" >> "$GITHUB_ENV"
18-
echo "BROWSER=webkit chromium firefox" >> "$GITHUB_ENV"
18+
echo "BROWSERS=webkit chromium firefox" >> "$GITHUB_ENV"
1919
echo "OS=macos" >> "$GITHUB_ENV"
2020
fi
2121
@@ -32,7 +32,4 @@ runs:
3232
shell: bash
3333
working-directory: screen-reader-test
3434
if: steps.playwright-cache.outputs.cache-hit != 'true'
35-
run: |
36-
npx playwright install --with-deps ${{ env.BROWSER }}
37-
echo "----"
38-
ls ${{ env.CACHE_PATH }}
35+
run: npx playwright install --with-deps ${{ env.BROWSERS }}

.github/workflows/00-init-playwright.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [macos-latest, windows-latest]
13+
os: [macos-13, windows-2022]
1414
steps:
1515
- name: ⏬ Checkout repo
1616
uses: actions/checkout@v4

0 commit comments

Comments
 (0)