Skip to content

Merge branch 'release/release/0.10.9' #31

Merge branch 'release/release/0.10.9'

Merge branch 'release/release/0.10.9' #31

Workflow file for this run

name: 'npm publish && test'
on:
push:
branches:
- main
- master
release:
types: [created]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- run: npm version
- run: npm install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}