Skip to content

types - update

types - update #16

Workflow file for this run

name: Publish package to npm
on:
push:
branches:
- main # Set this to the branch you want to trigger the publish action
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "18" # Specify the Node.js version
registry-url: "https://registry.npmjs.org/"
- name: Install dependencies
run: npm install
- name: Build package
run: npm run build # Replace with your build script
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}