Skip to content

decl interfaces together, and save the build output #3

decl interfaces together, and save the build output

decl interfaces together, and save the build output #3

Workflow file for this run

name: NodeJS with Grunt
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npm run make
# Upload the build output as an artifact
- name: Output
uses: actions/upload-artifact@v3
with:
name: build-output # Name of the artifact
path: out/make/ # Path to the build output directory