Skip to content

fix(search): use updated schema + omit empty fields from url #378

fix(search): use updated schema + omit empty fields from url

fix(search): use updated schema + omit empty fields from url #378

Workflow file for this run

name: Vitest, TypeScript check, ESLint
on:
push:
paths:
- 'client/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "./client"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 22.x
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Install dependencies
run: npm ci
working-directory: ./client
- name: Build Nuxt (dev mode, no prerender)
run: npm run build:dev
working-directory: ./client
- name: Run all other tests
run: npm run test
working-directory: ./client