Skip to content

chore(deps-dev): bump vite from 5.4.5 to 5.4.6 in the npm_and_yarn group across 1 directory #51

chore(deps-dev): bump vite from 5.4.5 to 5.4.6 in the npm_and_yarn group across 1 directory

chore(deps-dev): bump vite from 5.4.5 to 5.4.6 in the npm_and_yarn group across 1 directory #51

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
env:
PORT: 3456
DOMAIN: "http://localhost:3456"
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Analyze types
run: npm run typecheck
- name: Build Remix
run: npm run build
- name: Run Playwright tests
if: ${{ !cancelled() }}
run: npm run test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: coverage/html-report