Skip to content

chore(deps): bump shell-quote and concurrently #436

chore(deps): bump shell-quote and concurrently

chore(deps): bump shell-quote and concurrently #436

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main ]
tags-ignore: [ '*' ]
pull_request:
branches: [ main ]
jobs:
test:
if: ${{ !startsWith(github.event.head_commit.message, 'New version') }}
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: make build es=es2021 fat=true uglify=true
- name: Install Playwright Browsers
run: make screenshots-build-image
- name: Run Playwright tests
run: make screenshots-test es=es2021 fat=true min=true
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30