From a4d20b7c91ac1a4dabdf2fa841cd5c049efec596 Mon Sep 17 00:00:00 2001 From: Tenemo Date: Mon, 30 Mar 2026 03:01:17 +0200 Subject: [PATCH] cache@v5 update --- .github/workflows/playwright.yml | 22 +++++++++++----------- .github/workflows/production-e2e.yml | 16 ++++++++-------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 4ed9feb..8f78043 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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') }} @@ -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' diff --git a/.github/workflows/production-e2e.yml b/.github/workflows/production-e2e.yml index 1012cc6..b73781e 100644 --- a/.github/workflows/production-e2e.yml +++ b/.github/workflows/production-e2e.yml @@ -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] @@ -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 @@ -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 @@ -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 @@ -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') }} @@ -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'