Lint workflow

This commit is contained in:
CrazyMax 2020-01-17 09:45:32 +01:00
parent d69869b0e5
commit 9989f870fc
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7

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

@ -0,0 +1,26 @@
name: lint
on:
pull_request:
paths:
- '.github/workflows/lint.yml'
- 'src/*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
-
# https://github.com/actions/checkout
name: Checkout
uses: actions/checkout@v1
-
# https://github.com/actions/setup-node
name: Set up Node
uses: actions/setup-node@v1
-
name: Setup TS
run: npm install tslint typescript -g
-
name: Lint check
run: tslint './src/*.ts'