Create build.yml

This commit is contained in:
Daniel Lautzenheiser 2022-12-01 12:42:47 -05:00 committed by GitHub
parent b64e909332
commit 1a8f51bfd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

38
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,38 @@
name: Build Editor
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- Editor/**
pull_request:
branches: [ "main" ]
paths:
- Editor/**
jobs:
build:
runs-on: ubuntu-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: Setup
working-directory: ./Editor
run: |
npm ci
- name: Build
working-directory: ./Editor
run: |
npm run build