Skip to content

Merge branch 'develop' #2

Merge branch 'develop'

Merge branch 'develop' #2

Workflow file for this run

name: Publish
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
permissions:
contents: read
id-token: write
on:
push:
tags:
- "v*"
concurrency:
group: publish-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
cache: npm
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Test
run: npm test
- name: Demo proof
run: npm run demo:proof
- name: Proof evals
run: npm run eval:proof
- name: Package smoke test
run: npm run smoke:package
- name: Dry-run pack
run: npm pack --dry-run
- name: Publish package with trusted publishing
run: npm publish --provenance