Skip to content

Publish to NPM (Dry run on prerelease) #3

Publish to NPM (Dry run on prerelease)

Publish to NPM (Dry run on prerelease) #3

Workflow file for this run

name: Publish to NPM (Dry run on prerelease)
on:
release:
types: [prereleased, released]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- run: git config --global user.name "NPM release bot"
- run: git config --global user.email "<>"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- run: npm version ${{ github.event.release.tag_name }} --git-tag-version=false
if: ${{ github.event.action }} == 'prereleased'
- name: Test publishing to NPM
if: ${{ github.event.action }} == 'prereleased'
run: npm publish --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}