Skip to content

bump with upgrade to node_v20 #10

bump with upgrade to node_v20

bump with upgrade to node_v20 #10

name: 'PR Publish Npm'
on:
pull_request:
branches:
- main
types:
- closed
jobs:
publish-npm:
name: 'PR Merged'
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}