Skip to content

Update .nvmrc to version 16.14.2 #19

Update .nvmrc to version 16.14.2

Update .nvmrc to version 16.14.2 #19

Workflow file for this run

name: Publish
env:
VERSION: 3.0.1
NODE_VERSION: '18.18.2'
on:
push:
tags:
- "*"
- "!*beta*"
jobs:
publish:
name: Publish on NPM.js
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
registry-url: 'https://registry.npmjs.org'
- name: Install yarn
shell: bash
run: corepack enable
- run: yarn install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}