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
22 changes: 11 additions & 11 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: '22.x'
node-version: "22.x"

- name: Read Playwright workflow config
id: config
Expand All @@ -39,8 +39,8 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: '22.x'
cache: 'npm'
node-version: "22.x"
cache: "npm"

- name: Install dependencies
run: npm ci
Expand Down Expand Up @@ -76,16 +76,16 @@ jobs:
slug: firefox
browser: firefox
desktop_project: Desktop Firefox
invariant_project: ''
invariant_project: ""
mobile_project: Mobile Firefox (Galaxy S24)
- name: WebKit
slug: webkit
browser: webkit
desktop_project: Desktop Safari
invariant_project: ''
invariant_project: ""
mobile_project: Mobile Safari (iPhone 15)
env:
PLAYWRIGHT_BLOB_REPORT: 'true'
PLAYWRIGHT_BLOB_REPORT: "true"
PLAYWRIGHT_CI_WORKERS: ${{ needs.resolve_config.outputs.workers }}
steps:
- name: Checkout
Expand All @@ -94,8 +94,8 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: '22.x'
cache: 'npm'
node-version: "22.x"
cache: "npm"

- name: Install dependencies
run: npm ci
Expand All @@ -108,7 +108,7 @@ jobs:

- name: Cache Playwright browsers
id: playwright-browser-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ matrix.engine.browser }}-${{ hashFiles('package-lock.json') }}
Expand Down Expand Up @@ -160,8 +160,8 @@ jobs:
if: needs.playwright.result == 'failure' || needs.playwright.result == 'cancelled'
uses: actions/setup-node@v5
with:
node-version: '22.x'
cache: 'npm'
node-version: "22.x"
cache: "npm"

- name: Install dependencies
if: needs.playwright.result == 'failure' || needs.playwright.result == 'cancelled'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/production-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
base_url:
description: Production site URL to test
required: false
default: 'https://piech.dev'
default: "https://piech.dev"
type: string
repository_dispatch:
types: [production_e2e]
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: '22.x'
node-version: "22.x"

- name: Read Playwright workflow config
id: config
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
slug: mobile-firefox-galaxy-s24
browser: firefox
env:
PLAYWRIGHT_BLOB_REPORT: 'true'
PLAYWRIGHT_BLOB_REPORT: "true"
PLAYWRIGHT_REMOTE_CI_WORKERS: ${{ needs.resolve_config.outputs.workers }}
steps:
- name: Checkout
Expand All @@ -80,8 +80,8 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: '22.x'
cache: 'npm'
node-version: "22.x"
cache: "npm"

- name: Install dependencies
run: npm ci
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

- name: Cache Playwright browsers
id: playwright-browser-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ matrix.project.browser }}-${{ hashFiles('package-lock.json') }}
Expand Down Expand Up @@ -218,8 +218,8 @@ jobs:
if: needs.playwright.result == 'failure' || needs.playwright.result == 'cancelled'
uses: actions/setup-node@v5
with:
node-version: '22.x'
cache: 'npm'
node-version: "22.x"
cache: "npm"

- name: Install dependencies
if: needs.playwright.result == 'failure' || needs.playwright.result == 'cancelled'
Expand Down
Loading