Skip to content

docs: add example input file #51

docs: add example input file

docs: add example input file #51

Workflow file for this run

# This workflow builds the package and uploads it to the NPM repository
name: Publish to NPM
# Trigger with every commit on master
on:
push:
branches:
- master
jobs:
build_and_publish_package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish to npm
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}