diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 68575e3..7aa8274 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -53,8 +53,19 @@ jobs: . scripts/ci/ci-node-path.sh task install + - name: Install Playwright Chromium + run: | + . scripts/ci/ci-node-path.sh + pnpm exec playwright install chromium --with-deps + - name: Run tests run: | . scripts/ci/ci-node-path.sh set -o pipefail task test:all 2>&1 | tee test_results.txt + + - name: Run E2E (Playwright) + run: | + . scripts/ci/ci-node-path.sh + set -o pipefail + CI=1 pnpm run test:e2e