Skip to content

v2.3.3

v2.3.3 #11

Workflow file for this run

name: Publish
on:
release:
types: [created]
permissions:
contents: read
id-token: write
jobs:
test:
name: Test
uses: github/arianotify-polyfill/.github/workflows/test.yml@main
secrets: inherit
publish-npm:
needs: [test]
name: Publish to npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm install -g npm@^11.0.0
- run: npm ci
- run: npm version ${TAG_NAME} --git-tag-version=false
env:
TAG_NAME: ${{ github.event.release.tag_name }}
- run: npm --ignore-scripts publish --provenance --access public