Skip to content

docs(ui): add Error List documentation #14

docs(ui): add Error List documentation

docs(ui): add Error List documentation #14

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
paths:
- 'src/**'
- 'public/**'
- 'package.json'
- 'astro.config.mjs'
- '.github/workflows/build.yml'
push:
branches:
- main
paths:
- 'src/**'
- 'public/**'
- 'package.json'
- 'astro.config.mjs'
- '.github/workflows/build.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npx astro check
- name: Build
run: npm run build