Skip to content
This repository was archived by the owner on May 20, 2026. It is now read-only.

v0.3.4

v0.3.4 #23

Workflow file for this run

name: Publish to npm
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: 24
registry-url: https://registry.npmjs.org
cache: npm
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run check
- name: Publish
run: npm publish --provenance --access public