Skip to content

Rebase Vite/Vitest tooling onto our stack (keep MAX_BUFFER_SIZE fix) #25

Rebase Vite/Vitest tooling onto our stack (keep MAX_BUFFER_SIZE fix)

Rebase Vite/Vitest tooling onto our stack (keep MAX_BUFFER_SIZE fix) #25

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "lts/*"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Install Playwright dependencies
run: npx playwright install
- name: Run tests
run: npm test