Skip to content

docs(demo): host the his-demo as a static SPA at /fhir-dsl/demo #154

docs(demo): host the his-demo as a static SPA at /fhir-dsl/demo

docs(demo): host the his-demo as a static SPA at /fhir-dsl/demo #154

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Type check
run: pnpm typecheck
- name: Test
run: pnpm test