diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..da3f94e --- /dev/null +++ b/.github/workflows/test.yml @@ -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 }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 92d9a5e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -sudo: false -language: node_js -node_js: - - node - - "12" - - "10" -after_success: - - "npm run coveralls" diff --git a/README.md b/README.md index aeef3a6..2ba3c63 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/package.json b/package.json index 49377d6..bde2590 100644 --- a/package.json +++ b/package.json @@ -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" }, @@ -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",