Skip to content

feat: apply terrarium federation standards #21

feat: apply terrarium federation standards

feat: apply terrarium federation standards #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run typecheck
- run: npm run generate
- name: verify generated files are committed
run: |
git diff --exit-code docs/ || (echo "docs/ is out of sync — run npm run generate and commit" && exit 1)