Skip to content

v2.105.3

v2.105.3 #174

Workflow file for this run

name: NPM Publish
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
scope: "@hpcc-js"
- run: npm ci
- run: npm run lint-all
- run: npm run build
- run: npm run minimize
- run: npm run gen-legacy-types
- run: npm run compile-umd
- run: npm run build-gallery
- run: npm run build-test
# - run: npm run test re-enable when play is back online
- run: git stash
- run: npm run publish-lerna
env:
CI: true
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}