Skip to content

Add bigint to code doc & bump version (#136) #40

Add bigint to code doc & bump version (#136)

Add bigint to code doc & bump version (#136) #40

Workflow file for this run

name: Publish to NPM
on:
push:
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 21
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm run build:types
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}