Skip to content

Commit

Permalink
Switch to github workflow for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
w0rm committed Aug 29, 2021
1 parent a1b8242 commit 19bd36f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 9 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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
npm run coveralls
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 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

0 comments on commit 19bd36f

Please sign in to comment.