chore: initial commit

This commit is contained in:
Cory Dransfeldt 2024-03-13 11:39:01 -07:00
commit 3faf8bc4d5
No known key found for this signature in database
11 changed files with 2761 additions and 0 deletions

19
.github/workflows/npm-publish.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Node.js Package
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}