Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/playwright-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,16 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
# Intentionally NOT caching yarn — a stale runner cache was
# leaving @axe-core/playwright out of node_modules even though
# it sat in yarn.lock. Mirrors cypress-manual.yml which also
# opts out of caching.

- name: Install dependencies
run: yarn install --frozen-lockfile
# Plain `yarn install` (no --frozen-lockfile) — matches the
# cypress-manual.yml pattern. Slower per run (~30-60s vs cached)
# but guarantees a clean node_modules every time.
run: yarn install

- name: Decode prod env file
if: env.APP_ENV == 'prod'
Expand Down
1 change: 1 addition & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference types="node" />
import { defineConfig, devices } from '@playwright/test';

const baseURL = process.env.PLAYWRIGHT_BASE_URL || 'http://localhost:3005';
Expand Down
Loading