Skip to content

v0.3.2

v0.3.2 #11

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
workflow_dispatch:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write # Required for OIDC
contents: read
steps:
- uses: actions/checkout@v6
- uses: webfactory/ssh-agent@v0.10.0
with:
ssh-private-key: |
${{ secrets.RSA_KEY }}
${{ secrets.ECDSA_KEY }}
${{ secrets.ED25519_KEY }}
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run test
- run: npm publish --provenance --access public