-
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (55 loc) · 1.28 KB
/
ESLint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: ESLint
on:
push:
branches:
- 'master'
paths-ignore:
- '.github/**'
- '.vscode/**'
- 'examples/'
- 'docs/'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'package.json'
- 'renovate.json'
- 'tsconfig.json'
pull_request:
branches:
- 'feature/**'
- 'issue/**'
- 'master'
paths-ignore:
- '.github/**'
- '.vscode/**'
- 'examples/'
- 'docs/'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'package.json'
- 'renovate.json'
- 'tsconfig.json'
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 15.x, 16.x]
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Uses Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Installs ESLint globally
run: npm i -g eslint
- name: Installs all local dependencies
run: npm ci
- name: Lints the repository for any code-checking errors
run: eslint src --ext .ts --fix
- name: Build the project for any errors
run: tsc --noEmit