Skip to content

feat(codegen): emit bc's de-interpreted STATIC straight-line code (bc 0.2.5, bc#75) #115

feat(codegen): emit bc's de-interpreted STATIC straight-line code (bc 0.2.5, bc#75)

feat(codegen): emit bc's de-interpreted STATIC straight-line code (bc 0.2.5, bc#75) #115

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
# Node 22 to match the local dev floor and the other workflows
# (release-discipline needs `node:fs` globSync, Node 22+).
node-version: 22
cache: npm
- name: Install
run: npm ci --ignore-scripts
- name: Audit
run: npm audit --audit-level=moderate
- name: Verify npm signatures
run: npm audit signatures
- name: Lint
run: npm run lint --if-present
- name: Build
run: npm run build
- name: Test
run: npm run test:ci
- name: Verify package contents
run: npm pack --dry-run