Skip to content

engine: health targets scheduling (WHO defaults) and Plan preview button #18

engine: health targets scheduling (WHO defaults) and Plan preview button

engine: health targets scheduling (WHO defaults) and Plan preview button #18

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ "**" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
NEXT_TELEMETRY_DISABLED: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install --no-audit --no-fund
- name: Lint
run: npm run lint
- name: Type check
run: npm run type-check
- name: Unit tests
run: npm test -- --coverage
- name: Build
run: npm run build