Skip to content

Commit eb83da2

Browse files
committed
replaced Travis CI with GitHub Actions
Travis seems a little flakey lately and is generally less convenient (it appears the various add-ons specified in `.travis.yml` are not required anymore)
1 parent 516adc7 commit eb83da2

File tree

4 files changed

+22
-27
lines changed

4 files changed

+22
-27
lines changed

.editorconfig

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

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

17-
[*.yml]
18-
indent_style = space
19-
indent_size = 2
20-
2117
[COMMIT_EDITMSG]
2218
trim_trailing_whitespace = false
2319
max_line_length = 72

.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 run test:prepare && npm install-test
18+
env:
19+
CI: true

.travis.yml

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# faucet-pipeline-static
22
[![npm](https://img.shields.io/npm/v/faucet-pipeline-static.svg)](https://www.npmjs.com/package/faucet-pipeline-static)
3-
[![Build Status](https://travis-ci.org/faucet-pipeline/faucet-pipeline-static.svg?branch=master)](https://travis-ci.org/faucet-pipeline/faucet-pipeline-static)
3+
[![build status](https://github.com/faucet-pipeline/faucet-pipeline-static/workflows/tests/badge.svg)](https://github.com/faucet-pipeline/faucet-pipeline-static/actions)
44
[![Greenkeeper badge](https://badges.greenkeeper.io/faucet-pipeline/faucet-pipeline-static.svg)](https://greenkeeper.io)
55

6-
You can find the documentation [here](http://www.faucet-pipeline.org).
6+
See [faucet-pipeline.org](https://www.faucet-pipeline.org) for documentation.
77

88
## License
99

0 commit comments

Comments
 (0)