Skip to content

feat: harden exports and slim offline app shell #1

feat: harden exports and slim offline app shell

feat: harden exports and slim offline app shell #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test-and-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: structure-insight
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: structure-insight/package-lock.json
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test -- --run
- name: Build
run: npm run build