Skip to content

Commit

Permalink
Merge branch 'main' into pass-options-to-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAlbin committed Nov 21, 2021
2 parents 5b98eae + 70dfabe commit 83dcfcd
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 12 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
npm-test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['10', '12', '14']

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- run: |
npm install
npm test
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gulp-postcss

[![Build Status](https://img.shields.io/travis/postcss/gulp-postcss.svg)](https://travis-ci.org/postcss/gulp-postcss)
![Build Status](https://github.com/postcss/gulp-postcss/actions/workflows/test.yml/badge.svg?branch=main)
[![Coverage Status](https://img.shields.io/coveralls/postcss/gulp-postcss.svg)](https://coveralls.io/r/postcss/gulp-postcss)

[PostCSS](https://github.com/postcss/postcss) gulp plugin to pipe CSS through
Expand Down Expand Up @@ -209,6 +209,9 @@ module.exports = function (ctx) {

## Changelog

* 9.0.1
* Bump postcss-load-config to ^3.0.0

* 9.0.0
* Bump PostCSS to 8.0
* Drop Node 6 support
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
"all": true,
"check-coverage": true
},
"version": "9.0.0",
"version": "9.0.1",
"description": "PostCSS gulp plugin",
"main": "index.js",
"engines": {
"node": "^10 || ^12 || >=14"
},
"scripts": {
"coveralls": "coveralls < coverage/lcov.info",
"pretest": "eslint *.js",
"test": "nyc mocha test.js"
},
Expand All @@ -47,7 +46,6 @@
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"gulp-sourcemaps": "^2.6.5",
"mocha": "^5.2.0",
Expand Down

0 comments on commit 83dcfcd

Please sign in to comment.