Skip to content

chore(deps): update dependency @vue/eslint-config-typescript to v14.1.3 #276

chore(deps): update dependency @vue/eslint-config-typescript to v14.1.3

chore(deps): update dependency @vue/eslint-config-typescript to v14.1.3 #276

Workflow file for this run

name: Playwright Tests
on:
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 15
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g yarn && yarn
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Build for preview
run: yarn build
- name: Run Playwright tests and update snapshots
if: contains(github.event.pull_request.labels.*.name, 'update snapshots')
run: yarn test:e2e --update-snapshots
- name: Run Playwright tests
if: ${{ !contains(github.event.pull_request.labels.*.name, 'update snapshots') }}
run: yarn test:e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-artifact
path: |
playwright-report/
tests/*-snapshots/
retention-days: 1