Skip to content

Document Pandora production checkpoint #378

Document Pandora production checkpoint

Document Pandora production checkpoint #378

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
quality:
name: Typecheck, lint, test, and build
runs-on: ubuntu-latest
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 ci
- name: Env Broker policy
run: npm run env:policy
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build