Skip to content

Release 2.9.0

Release 2.9.0 #28

Workflow file for this run

name: Ubuntu Package
on:
release:
types: [published]
jobs:
publish-npm:
name: Publish to NPM
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- name: Install & test
run: |
npm ci
npm run build
npm run test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}