Skip to content

Implement external-results case endpoints with test-case auto-upsert, transition enforcement, and traceability linking #190

Implement external-results case endpoints with test-case auto-upsert, transition enforcement, and traceability linking

Implement external-results case endpoints with test-case auto-upsert, transition enforcement, and traceability linking #190

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- main
paths:
- 'frontend/**'
- '.github/workflows/frontend-ci.yml'
pull_request:
branches:
- main
paths:
- 'frontend/**'
- '.github/workflows/frontend-ci.yml'
jobs:
build:
name: Lint and Build
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: frontend
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Build (includes TypeScript type check)
run: npm run build