Skip to content

Bump nuxt from 2.17.3 to 3.12.4 #35

Bump nuxt from 2.17.3 to 3.12.4

Bump nuxt from 2.17.3 to 3.12.4 #35

Workflow file for this run

# see https://playwright.dev/docs/ci-intro
name: e2e
on:
push:
branches:
- master
pull_request_target:
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
- name: Install dependencies
run: yarn install
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Playwright tests
run: yarn test:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30