We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sindresorhus
Learn more about funding links in repositories.
Report abuse
1 parent c5e7214 commit 87ff53dCopy full SHA for 87ff53d
.github/workflows/main.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+on:
3
+ - push
4
+ - pull_request
5
+jobs:
6
+ test:
7
+ name: Node.js ${{ matrix.node-version }}
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ node-version:
13
+ - 14
14
+ - 12
15
+ - 10
16
+ - 8
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: actions/setup-node@v1
20
+ with:
21
+ node-version: ${{ matrix.node-version }}
22
+ - run: npm install
23
+ - run: npm test
.travis.yml
readme.md
@@ -1,4 +1,4 @@
-# gulp-autoprefixer [](https://travis-ci.org/sindresorhus/gulp-autoprefixer)
+# gulp-autoprefixer
> Prefix CSS with [Autoprefixer](https://github.com/postcss/autoprefixer)
0 commit comments