Update package.json #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |