Skip to content

Build NodeJS

Build NodeJS #2

Workflow file for this run

name: Build NodeJS
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.17.1
- name: Run npm bild
working-directory: nodejs
run: |
npm i
npm i lodash
npm run build
- name: Archive dist
uses: actions/upload-artifact@v4
with:
name: dist
path: |
nodejs/dist