Skip to content

v0.3.1

v0.3.1 #17

Workflow file for this run

name: Node.js Package
on:
release:
types: [published]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
registry-url: https://registry.npmjs.org/
- name: Build
run: |
npm ci
npm run lint
npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}