Skip to content

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

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

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

Workflow file for this run

name: Build and Test
on:
push:
branches-ignore:
- main
- gh-pages
jobs:
build-and-test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4.2.2
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30