File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : lint
2
+ run-name : Installs project and runs linting
3
+ on : [ push, pull_request ]
4
+ jobs :
5
+ lint :
6
+ runs-on : ubuntu-latest
7
+ strategy :
8
+ matrix :
9
+ node : [ 16, 18 ]
10
+ name : Linting on Ubuntu with Node ${{ matrix.node }}
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
14
+ with :
15
+ node-version : ${{ matrix.node }}
16
+ cache : ' npm'
17
+ - run : yarn install
18
+ - run : yarn lint
Original file line number Diff line number Diff line change
1
+ name : prettier
2
+ run-name : Installs project and runs prettier checks
3
+ on : [ push, pull_request ]
4
+ jobs :
5
+ lint :
6
+ runs-on : ubuntu-latest
7
+ strategy :
8
+ matrix :
9
+ node : [ 16, 18 ]
10
+ name : Prettier on Ubuntu with Node ${{ matrix.node }}
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
14
+ with :
15
+ node-version : ${{ matrix.node }}
16
+ cache : ' npm'
17
+ - run : yarn install
18
+ - run : yarn format
You can’t perform that action at this time.
0 commit comments