File tree 2 files changed +9
-16
lines changed
2 files changed +9
-16
lines changed Original file line number Diff line number Diff line change 1
1
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
2
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
-
4
3
name : Run Linter
5
4
6
5
on : [push]
7
6
jobs :
8
- build :
9
-
7
+ lint :
10
8
runs-on : ubuntu-latest
11
-
12
9
strategy :
13
10
matrix :
14
11
node-version : [14.x, 15.x]
15
12
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
16
-
17
13
steps :
18
- - uses : actions/checkout@v2
19
- - name : Use Node.js ${{ matrix.node-version }}
20
- uses : actions/setup-node@v1
21
- with :
22
- node-version : ${{ matrix.node-version }}
23
- - run : npm install
24
- - run : npm run lint
14
+ - uses : actions/checkout@v2
15
+ - name : Use Node.js ${{ matrix.node-version }}
16
+ uses : actions/setup-node@v1
17
+ with :
18
+ node-version : ${{ matrix.node-version }}
19
+ - run : npm install
20
+ - run : npm run lint
Original file line number Diff line number Diff line change @@ -5,15 +5,12 @@ name: Typecheck Files
5
5
6
6
on : [push]
7
7
jobs :
8
- build :
9
-
8
+ typecheck :
10
9
runs-on : ubuntu-latest
11
-
12
10
strategy :
13
11
matrix :
14
12
node-version : [14.x, 15.x]
15
13
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
16
-
17
14
steps :
18
15
- uses : actions/checkout@v2
19
16
- name : Use Node.js ${{ matrix.node-version }}
You can’t perform that action at this time.
0 commit comments