v0.27.6 #319
Workflow file for this run
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
# This workflow will run tests using node and then publish a package to npmjs.org when a release is created | |
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | |
name: Publish package to npmjs | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
env: | |
REGISTRY_URL: 'https://registry.npmjs.org/' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [20.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .npmrc file to publish to npm | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: ${{ env.REGISTRY_URL }} | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
# [27/AUG/23] Adjusted from npm ci to prevent EBADPLATFORM error due to fsevents | |
- name: Install npm | |
run: npm i | |
- name: Publish package to npm | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |