Skip to content

0.11.2

0.11.2 #5

Workflow file for this run

name: publish
on:
release:
types: [published]
permissions:
contents: read
id-token: write
jobs:
publish:
name: publish
if: ${{ !github.event.release.prerelease }}
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test
- run: npm publish --provenance --access public