Skip to content

Merge pull request #168 from vinodsr/bugfix/handle-crash #52

Merge pull request #168 from vinodsr/bugfix/handle-crash

Merge pull request #168 from vinodsr/bugfix/handle-crash #52

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build and Publish package
on:
push:
branches: [ master ]
jobs:
publish:
#if: ${{ contains(github.event.head_commit.message, '#publish') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}