File tree 5 files changed +38
-20
lines changed
5 files changed +38
-20
lines changed 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
+ branches :
9
+ - master
10
+
11
+ jobs :
12
+ test :
13
+
14
+ runs-on : ubuntu-latest
15
+
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ node-version : [12.x, 14.x, 16.x]
20
+
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - name : Node.js ${{ matrix.node-version }}
24
+ uses : actions/setup-node@v2
25
+ with :
26
+ node-version : ${{ matrix.node-version }}
27
+ - run : npm install
28
+ - run : gulp lint
29
+ - run : npm test
30
+ - run : npm run coveralls
31
+
32
+ - name : Coveralls
33
+ uses : coverallsapp/github-action@master
34
+ with :
35
+ github-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
node_modules
2
+ coverage
2
3
.nyc_output
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # [ gulp] ( https://github.com/wearefractal/gulp ) -inline-css [ ![ Build Status] ( https://travis-ci.org /jonkemp/gulp-inline-css. svg?branch=master )] ( https://travis-ci.org/jonkemp/gulp-inline-css ) [ ![ Coverage Status] ( https://coveralls.io/repos/jonkemp/gulp-inline-css/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/jonkemp/gulp-inline-css?branch=master )
1
+ # [ gulp] ( https://github.com/wearefractal/gulp ) -inline-css ![ Build Status] ( https://github.com /jonkemp/gulp-inline-css/actions/workflows/main.yml/badge. svg?branch=master ) [ ![ Coverage Status] ( https://coveralls.io/repos/jonkemp/gulp-inline-css/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/jonkemp/gulp-inline-css?branch=master )
2
2
3
3
[ ![ NPM] ( https://nodei.co/npm/gulp-inline-css.png?downloads=true )] ( https://nodei.co/npm/gulp-inline-css/ )
4
4
Original file line number Diff line number Diff line change 30
30
"test" : " mocha" ,
31
31
"lint" : " gulp lint" ,
32
32
"coverage" : " nyc npm test && nyc report" ,
33
- "coveralls" : " nyc npm test && nyc report --reporter=text- lcov | coveralls "
33
+ "coveralls" : " nyc npm test && nyc report --reporter=lcov"
34
34
},
35
35
"files" : [
36
36
" index.js"
You can’t perform that action at this time.
0 commit comments