From 1a8f51bfd16317e50bfd12f86f4d02d4740097bd Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Thu, 1 Dec 2022 12:42:47 -0500 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..a68f4787 --- /dev/null +++ b/.github/workflows/build.yml @@ -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