Skip to content

2.5.0

2.5.0 #29

Workflow file for this run

name: npm-deploy
on:
release:
types: [released]
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: install
run: |
npm ci
env:
CI: true
- name: build
run: |
npm run build
env:
CI: true
- name: test
run: npm run github-test
env:
CI: true
- name: publish
run: npm publish
env:
CI: true
NODE_AUTH_TOKEN: ${{secrets.npm_token}}