Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Readme update (#2) (#3) #5

Readme update (#2) (#3)

Readme update (#2) (#3) #5

Workflow file for this run

name: NPM Publish
on:
workflow_dispatch:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
cache: 'npm'
- run: npm ci
- run: npm run publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}