chore(project): publish v1.11.3 #3852
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Visual regression tests | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.47.1 | |
options: --user 1001:1000 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup NPM cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install node dependencies | |
run: npm ci | |
- name: Build frontend | |
run: npm run build | |
- name: Build mock website | |
run: npm run build:e2e | |
- name: Start server | |
run: npm run start:visual-preview | |
- name: Run Playwright tests | |
if: github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/main' | |
run: npm run test:visual | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: Playwright report | |
path: playwright-report/ | |
retention-days: 30 |