File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Style Checks
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ lint :
7
+ strategy :
8
+ matrix :
9
+ node-version : [14.x]
10
+ os : [ubuntu-latest]
11
+
12
+ runs-on : ${{ matrix.os }}
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ with :
16
+ fetch-depth : 0
17
+ - run : git branch -a
18
+ - name : Use Node.js ${{ matrix.node-version }}
19
+ uses : actions/setup-node@v1
20
+ with :
21
+ node-version : ${{ matrix.node-version }}
22
+ - run : npm install
23
+ - run : CLANG_FORMAT_START=refs/remotes/origin/master npm run lint
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ script:
54
54
# Travis CI sets NVM_NODEJS_ORG_MIRROR, but it makes node-gyp fail to download headers for nightly builds.
55
55
- unset NVM_NODEJS_ORG_MIRROR
56
56
57
- - npm run lint
58
57
- npm test
59
58
after_success :
60
59
- cpp-coveralls --gcov-options '\-lp' --build-root test/build --exclude test
You can’t perform that action at this time.
0 commit comments