File tree Expand file tree Collapse file tree 3 files changed +35
-38
lines changed Expand file tree Collapse file tree 3 files changed +35
-38
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ module.exports = {
2828 'no-debugger' : 2 ,
2929 'eqeqeq' : 2 ,
3030 'no-eval' : 2 ,
31- 'linebreak-style' : [ 2 , 'unix' ] ,
3231 'new-cap' : [ 2 , {
3332 properties : false ,
3433 } ] ,
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ concurrency :
10+ group : ci-${{ github.head_ref || github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ tests :
15+ runs-on : ${{ matrix.os }}
16+
17+ strategy :
18+ fail-fast : false
19+ matrix :
20+ node-version :
21+ - 10
22+ - 12
23+ - 13
24+ os :
25+ - ubuntu-latest
26+ - windows-latest
27+
28+ steps :
29+ - uses : actions/checkout@v4
30+ - uses : actions/setup-node@v4
31+ with :
32+ node-version : ${{ matrix.node-version }}
33+ cache : ' yarn'
34+ - run : yarn
35+ - run : yarn test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments