File tree Expand file tree Collapse file tree 4 files changed +35
-12
lines changed
Expand file tree Collapse file tree 4 files changed +35
-12
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+
9+ jobs :
10+ npm-test :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ node-version : ['10', '12', '14']
16+
17+ steps :
18+ - uses : actions/checkout@v2
19+
20+ - uses : actions/setup-node@v1
21+ with :
22+ node-version : ${{ matrix.node-version }}
23+
24+ - run : |
25+ npm install
26+ npm test
27+
28+ - uses : coverallsapp/github-action@master
29+ with :
30+ github-token : ${{ secrets.GITHUB_TOKEN }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# gulp-postcss
22
3- [ ![ Build Status] ( https://img.shields.io/travis/ postcss/gulp-postcss.svg )] ( https://travis-ci.org/postcss/gulp-postcss )
3+ ![ Build Status] ( https://github.com/ postcss/gulp-postcss/actions/workflows/test.yml/badge.svg?branch=main )
44[ ![ Coverage Status] ( https://img.shields.io/coveralls/postcss/gulp-postcss.svg )] ( https://coveralls.io/r/postcss/gulp-postcss )
55
66[ PostCSS] ( https://github.com/postcss/postcss ) gulp plugin to pipe CSS through
@@ -209,6 +209,9 @@ module.exports = function (ctx) {
209209
210210## Changelog
211211
212+ * 9.0.1
213+ * Bump postcss-load-config to ^3.0.0
214+
212215* 9.0.0
213216 * Bump PostCSS to 8.0
214217 * Drop Node 6 support
Original file line number Diff line number Diff line change 1313 "all" : true ,
1414 "check-coverage" : true
1515 },
16- "version" : " 9.0.0 " ,
16+ "version" : " 9.0.1 " ,
1717 "description" : " PostCSS gulp plugin" ,
1818 "main" : " index.js" ,
1919 "engines" : {
2020 "node" : " ^10 || ^12 || >=14"
2121 },
2222 "scripts" : {
23- "coveralls" : " coveralls < coverage/lcov.info" ,
2423 "pretest" : " eslint *.js" ,
2524 "test" : " nyc mocha test.js"
2625 },
4746 "vinyl-sourcemaps-apply" : " ^0.2.1"
4847 },
4948 "devDependencies" : {
50- "coveralls" : " ^3.0.3" ,
5149 "eslint" : " ^5.16.0" ,
5250 "gulp-sourcemaps" : " ^2.6.5" ,
5351 "mocha" : " ^5.2.0" ,
You can’t perform that action at this time.
0 commit comments