Skip to content

Publish plugin to npmjs #19

Publish plugin to npmjs

Publish plugin to npmjs #19

Workflow file for this run

name: Publish plugin to npmjs
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: plugin
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: corepack enable
- run: yarn && yarn build
- run: yarn test
- run: yarn npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}