Skip to content

Update package.json

Update package.json #8

Workflow file for this run

name: "publish npm"
on: push
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16' # Ensure using Node.js 16
registry-url: https://registry.npmjs.org
- name: Print NPM Version and Config
run: |
npm --version
npm config list
- name: Install Dependencies
run: npm install
- name: Publish to npm
run: npm publish --access public --verbose # Verbose logging
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}