Create lint.yml

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

37
.github/workflows/lint.yml vendored Normal file
View File

@ -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