Try using the image again
Test / test (push) Failing after 1m34s Details

This commit is contained in:
Jeff 2024-10-19 12:54:13 -04:00
parent dfb20a1cbe
commit 28bfe4c755
1 changed files with 8 additions and 2 deletions

View File

@ -4,8 +4,14 @@ on: [push]
jobs:
test:
runs-on: mcr.microsoft.com/playwright:v1.48.1-jammy
runs-on: ubuntu-latest
container: mcr.microsoft.com/playwright:v1.48.1-jammy
steps:
- uses: actions/checkout@v4
- env: NODE_OPTIONS=--max-old-space-size=8192
run: npm install && npm run test && npx playwright install-deps && npx playwright install && npx playwright test
run: |
npm install
npm run test
npx playwright install-deps
npx playwright install
npx playwright test