Skip to content

Bump version to v0.2.1 #6

Bump version to v0.2.1

Bump version to v0.2.1 #6

Workflow file for this run

name: Build & Publish to npm
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org/"
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build
- name: Run tests
run: npm run test
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}