Skip to content

Commit 83dcfcd

Browse files
committed
Merge branch 'main' into pass-options-to-plugins
2 parents 5b98eae + 70dfabe commit 83dcfcd

File tree

4 files changed

+35
-12
lines changed

4 files changed

+35
-12
lines changed

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 }}

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@
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
},
@@ -47,7 +46,6 @@
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",

0 commit comments

Comments
 (0)