Skip to content

Commit a5b08e1

Browse files
authored
Move to GitHub Actions (#262)
1 parent b5418db commit a5b08e1

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

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

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# gulp-rev [![Build Status](https://travis-ci.com/sindresorhus/gulp-rev.svg?branch=master)](https://travis-ci.com/github/sindresorhus/gulp-rev) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo)
1+
# gulp-rev
22

33
> Static asset revisioning by appending content hash to filenames
44
> `unicorn.css``unicorn-d41d8cd98f.css`

0 commit comments

Comments
 (0)