Skip to content

grid

grid #2373

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npm run build
# - name: Archive build result artifacts
# uses: actions/upload-artifact@v3
# with:
# name: dist-with-build-result
# path: |
# dist
# package.json
# package-lock.json