Skip to content

Clean up current "Build" step #58

Clean up current "Build" step

Clean up current "Build" step #58

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: [ self-hosted, Linux, small ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Setup Node
with:
node-version: 16
cache: npm
- name: NPM Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test