Skip to content

v1.0.13

v1.0.13 #14

Workflow file for this run

name: Node.js Package
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 22
registry-url: 'https://registry.npmjs.org/'
- run: npm i -g [email protected]
- run: pnpm i
- run: pnpm build --filter=node-network-devtools
- run: |
cd packages/network-debugger
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}