Skip to content

1.10.0

1.10.0 #37

Workflow file for this run

name: Publish NPM
on:
workflow_dispatch:
release:
types: [ created ]
jobs:
build:
name: Build & Test & Publish
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run transpile
- run: npm run test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}