Skip to content

Test updates; VS Code configuration; further trimming #6

Test updates; VS Code configuration; further trimming

Test updates; VS Code configuration; further trimming #6

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
env:
CI: ""
run: |
pushd app
npm run all
popd