Skip to content

fix: try to make github action work #5

fix: try to make github action work

fix: try to make github action work #5

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- main
permissions:
id-token: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run typecheck
- run: npm run build
- run: npm test
- run: npm publish