mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-09 23:03:47 -05:00
25 lines
427 B
YAML
25 lines
427 B
YAML
|
name: lint
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- '.github/workflows/lint.yml'
|
||
|
- 'src/*'
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
-
|
||
|
name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
-
|
||
|
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'
|