Skip to content

test: remove CSP to diagnose Vercel styling issue #12

test: remove CSP to diagnose Vercel styling issue

test: remove CSP to diagnose Vercel styling issue #12

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
verify:
name: Test and build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm test -- --watch=false
- name: Build production app
run: npm run build