Skip to content

v2.1.1

v2.1.1 #70

Workflow file for this run

name: npm publish
on:
release:
types: [created]
permissions:
id-token: write # Required for OIDC
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
# Ensure npm is up to date for trusted publishing
- run: npm install -g npm@latest
- run: npm ci
- run: npm test
- run: npm publish