Skip to content

v1.5.5

v1.5.5 #75

Workflow file for this run

name: Node.js Package
on:
release:
types: [created]
workflow_dispatch:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: 16
- run: npm install
- run: npm run build
# - run: npm test
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run build
- run: npm run version patch
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}