Skip to content

refactor: improve options JSDoc #30

refactor: improve options JSDoc

refactor: improve options JSDoc #30

on:
push:
branches:
- main
env:
CI: true
name: Release please
jobs:
release-please:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
outputs:
release_created: ${{ steps.release.outputs.release_created }}
steps:
- uses: google-github-actions/release-please-action@v4
id: release
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
release-type: node
create-package:
needs: release-please
# these if statements ensure that a publication only occurs when
# a new release is created:
if: ${{ needs.release-please.outputs.release_created }}
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
# The logic below handles the npm publication:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- run: npm install
- run: npm run build
# separate npm run to avoid leak of secrets by npm post-install scripts
- name: Publish package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}