Skip to content

Bump path-to-regexp and express (#14) #48

Bump path-to-regexp and express (#14)

Bump path-to-regexp and express (#14) #48

Workflow file for this run

name: integration tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Bootstrap env variables
env:
DATABASE_URL: "file:./evolver.db"
DEFAULT_DEVICE_PORT: 8080
run: echo "DATABASE_URL=$DATABASE_URL" >> .env && echo "DEFAULT_DEVICE_PORT=$DEFAULT_DEVICE_PORT" >> .env
- name: Install dependencies
run: npm ci --include=dev
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30