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