Skip to content

chore: bump version to 2.0.8 #10

chore: bump version to 2.0.8

chore: bump version to 2.0.8 #10

Workflow file for this run

name: Node.js Package
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Build 🔧
run: npm run build
- name: Publish package on NPM
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}