Skip to content

Very "raw" init of 0.0.1 #1

Very "raw" init of 0.0.1

Very "raw" init of 0.0.1 #1

Workflow file for this run

name: Test
on:
release:
types: [created]
jobs:
deploy:
name: Deploy on npm
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}