GitHub CI: Add ESLint

This commit is contained in:
SN0WF14K3 2021-06-22 16:16:33 +05:45 committed by GitHub
parent 8da9cb7194
commit ba58357aed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

32
.github/workflows/eslint.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: ESLint
on: [push, pull_request]
branches:
- '*'
- '!docs'
- '!gh-pages'
- '!develop'
- '!master'
jobs:
test:
strategy:
matrix:
node: ['14', '16']
name: ESLint (Node v${{ matrix.node }})
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node v${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run TSC
run: npm run build:check