Skip to content

add playwright-based e2e tests with visual regression testing, add a … #316

add playwright-based e2e tests with visual regression testing, add a …

add playwright-based e2e tests with visual regression testing, add a … #316

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: build and test
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm clean-install
- run: npx playwright install --with-deps chromium
# Uncomment this if for some reason you suspect CI (Linux) build differes from local, then you can inspect output.
# - name: Upload dist artifact
# uses: actions/upload-artifact@v4
# with:
# name: dist
# path: dist/
- run: npm test
- name: Upload Playwright rest results
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-test-results
path: test-results/
- name: Upload Playwright e2e snapshots
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-e2e-snapshots
path: e2e/**/*-snapshots/