Skip to content

Bump wrangler from 4.65.0 to 4.66.0 #44

Bump wrangler from 4.65.0 to 4.66.0

Bump wrangler from 4.65.0 to 4.66.0 #44

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
playwright:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: current
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test
- name: Upload Playwright report
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30