Skip to content

chore: migrate from Webpack to Vite and modernize build toolchain #122

chore: migrate from Webpack to Vite and modernize build toolchain

chore: migrate from Webpack to Vite and modernize build toolchain #122

Workflow file for this run

name: Cypress Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
cypress-run:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.x
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Chrome
uses: cypress-io/github-action@v6
with:
install: false
start: pnpm dev
wait-on: "http://localhost:5173"
wait-on-timeout: 200
browser: chrome
- name: Edge
uses: cypress-io/github-action@v6
with:
install: false
start: pnpm dev
wait-on: "http://localhost:5173"
wait-on-timeout: 200
browser: edge