Skip to content

chore: work around npm bug #227

chore: work around npm bug

chore: work around npm bug #227

Workflow file for this run

name: Release and Publish
on:
push:
branches:
- main
- alpha
- beta
- next
permissions:
contents: write # to be able to publish a GitHub release
id-token: write # to enable use of OIDC for npm provenance, Trusted Publisher
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run types
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}