From 28bfe4c75593411856dfc7b6949b8e689ef04e98 Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 19 Oct 2024 12:54:13 -0400 Subject: [PATCH] Try using the image again --- .gitea/workflows/test.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 74a4875..6496248 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -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