Skip to content

chore(deps-dev): bump nuxt from 3.14.1592 to 3.19.0 #16

chore(deps-dev): bump nuxt from 3.14.1592 to 3.19.0

chore(deps-dev): bump nuxt from 3.14.1592 to 3.19.0 #16

Workflow file for this run

name: Tests e2e
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
jobs:
build:
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: corepack enable
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: lts/-1
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Cache Playwright browsers
id: cache-playwright
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- name: Upload HTML Report
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: playwright-report
path: playwright-report/
retention-days: 30