Skip to content

Build and publish package to npm #83

Build and publish package to npm

Build and publish package to npm #83

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Build and publish package to npm
on:
release:
types:
- published
jobs:
build-and-publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
registry-url: https://registry.npmjs.org/
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Build package
run: pnpm run build
- name: Publish package
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}