Skip to content

Commit 84188a3

Browse files
committed
replaced Travis CI with GitHub Actions
Travis seems a little flakey lately and is generally less convenient
1 parent ffb8ed3 commit 84188a3

File tree

4 files changed

+21
-12
lines changed

4 files changed

+21
-12
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ max_line_length = 80
1111
indent_style = tab
1212
indent_size = 4
1313

14-
[*.md]
14+
[*.{md,yml}]
1515
indent_style = space
1616

1717
[COMMIT_EDITMSG]

.github/workflows/nodejs.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: tests
2+
on:
3+
- push
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
node-version:
10+
- 8.x
11+
- 12.x
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: actions/setup-node@v1
15+
with:
16+
node-version: ${{ matrix.node-version }}
17+
- run: npm install-test
18+
env:
19+
CI: true

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ faucet-pipeline-js
22
==================
33

44
[![package version](https://img.shields.io/npm/v/faucet-pipeline-js.svg?style=flat)](https://www.npmjs.com/package/faucet-pipeline-js)
5-
[![build status](https://travis-ci.org/faucet-pipeline/faucet-pipeline-js.svg?branch=master)](https://travis-ci.org/faucet-pipeline/faucet-pipeline-js)
5+
[![build status](https://github.com/faucet-pipeline/faucet-pipeline-js/workflows/tests/badge.svg)](https://github.com/faucet-pipeline/faucet-pipeline-js/actions)
66
[![Greenkeeper badge](https://badges.greenkeeper.io/faucet-pipeline/faucet-pipeline-js.svg)](https://greenkeeper.io)
77

88
[faucet-pipeline](http://faucet-pipeline.org) plugin for bundling JavaScript

0 commit comments

Comments
 (0)