Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

fix: update package-lock.json for npm dependency #5

fix: update package-lock.json for npm dependency

fix: update package-lock.json for npm dependency #5

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- 'v*'
permissions:
id-token: write # Required for npm OIDC
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Update npm for OIDC support
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
# Tests run in CI workflow on push - skip here to avoid NATS dependency
- name: Publish to npm
run: npm publish --provenance --access public