Skip to content

Bump prettier from 3.6.2 to 3.8.1 (#368) #346

Bump prettier from 3.6.2 to 3.8.1 (#368)

Bump prettier from 3.6.2 to 3.8.1 (#368) #346

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
actions: read
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
container:
# https://playwright.dev/docs/docker
image: mcr.microsoft.com/playwright:v1.54.0-noble
options: --user 1001
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Upgrade npm to version 11
run: npm install -g npm@11
- name: Install dependencies
run: npm ci
- name: Run Playwright tests
run: npm run test:playwright
- uses: actions/upload-artifact@v4
id: artifact-upload
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Comment Playwright report link
uses: thollander/actions-comment-pull-request@v3
if: ${{ failure() }}
with:
message: |
### Playwright tests failed.
Download the [Playwright report](${{ steps.artifact-upload.outputs.artifact-url }}).