Skip to content

feat(webui): add artefacts dropdown menu to header #133

feat(webui): add artefacts dropdown menu to header

feat(webui): add artefacts dropdown menu to header #133

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
webui:
name: WebUI Lint & Typecheck
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false || github.event_name != 'pull_request'
defaults:
run:
working-directory: webui
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "22"
cache: "npm"
cache-dependency-path: webui/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Format check
run: npm run format:check