Skip to content

Publish to npm

Publish to npm #222

Workflow file for this run

name: Publish to npm
on:
workflow_run:
workflows: [Run tests]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'success' && startsWith(github.ref, 'refs/tags/v') }}
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm test
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}