6565 deno-version : v2.x
6666
6767 - name : setup playwright for browser related test
68- if : matrix.os != 'LinuxARM64'
69- run : npx playwright install --with-deps && npx playwright install msedge && npx playwright install chrome
68+ run : |
69+ npx playwright install --with-deps
70+ if [ "${{matrix.os}}]" != "LinuxARM64" ]; then
71+ npx playwright install msedge
72+ fi
73+ npx playwright install chrome
7074
7175 - name : build driver
7276 run : npm i && npm run build
@@ -274,14 +278,12 @@ jobs:
274278 run : rm -rf examples/with-typescript-nextjs
275279
276280 - name : node with-javascript-vite
277- if : matrix.os != 'LinuxARM64'
278281 working-directory : examples/with-javascript-vite
279282 run : npm i && npx playwright test
280283 env :
281284 VITE_DATABASE_URL : ${{ secrets.CHINOOK_DATABASE_URL }}
282285
283286 - name : bun with-javascript-vite
284- if : matrix.os != 'LinuxARM64'
285287 working-directory : examples/with-javascript-vite
286288 run : |
287289 if [ "$RUNNER_OS" != "Windows" ]; then
@@ -303,17 +305,16 @@ jobs:
303305 run : rm -rf examples/with-javascript-vite
304306
305307 - name : node with-javascript-browser
306- if : matrix.os != 'LinuxARM64'
307308 working-directory : examples/with-javascript-browser
308309 run : npm i && node test.cjs
309310
310311 - name : bun with-javascript-browser
311- if : matrix.os != 'windows-latest' && matrix.os != 'LinuxARM64' # cannot launch browsers on windows with bash in commonjs?
312+ if : matrix.os != 'windows-latest' # cannot launch browsers on windows with bash in commonjs?
312313 working-directory : examples/with-javascript-browser
313314 run : bun i && bun test.cjs
314315
315316 - name : deno with-javascript-browser
316- if : matrix.os != 'windows-latest' && matrix.os != 'LinuxARM64' # https://github.com/denoland/deno/issues/23524#issuecomment-2292075726
317+ if : matrix.os != 'windows-latest' # https://github.com/denoland/deno/issues/23524#issuecomment-2292075726
317318 uses : nick-fields/retry@v3 # doing this step with the retry action because sometimes in macos it gets stuck without failing
318319 with :
319320 timeout_seconds : 45
0 commit comments