From b64e909332bdb8f0138615ef5bbd3c9833202020 Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Thu, 1 Dec 2022 12:42:32 -0500 Subject: [PATCH] Create lint.yml --- .github/workflows/lint.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..efd45184 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,37 @@ +name: Build Editor + +on: + 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: Lint + working-directory: ./Editor + run: | + npm run lint