Skip to content

Commit

Permalink
replaced Travis CI with GitHub Actions
Browse files Browse the repository at this point in the history
Travis seems flakey lately and is generally less convenient

note that ESLint v6+ no longer supports Node v8.9, so we'll just skip
tests for legacy versions (see `lib/util/resolve.js` for why that's
relevant)
  • Loading branch information
FND committed Dec 16, 2019
1 parent 17613a8 commit aba7150
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ max_line_length = 80
indent_style = tab
indent_size = 4

[*.md]
[*.{md,yml}]
indent_style = space

[COMMIT_EDITMSG]
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: tests
on:
- push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 8.x
- 12.x
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install-test
env:
CI: true
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
Expand Up @@ -2,7 +2,7 @@ faucet-pipeline-core
====================

[![npm](https://img.shields.io/npm/v/faucet-pipeline-core.svg)](https://www.npmjs.com/package/faucet-pipeline-core)
[![build status](https://travis-ci.org/faucet-pipeline/faucet-pipeline-core.svg?branch=master)](https://travis-ci.org/faucet-pipeline/faucet-pipeline-core)
[![build status](https://github.com/faucet-pipeline/faucet-pipeline-core/workflows/tests/badge.svg)](https://github.com/faucet-pipeline/faucet-pipeline-core/actions)
[![Greenkeeper badge](https://badges.greenkeeper.io/faucet-pipeline/faucet-pipeline-core.svg)](https://greenkeeper.io)

See [faucet-pipeline.org](https://www.faucet-pipeline.org) for documentation.
Expand Down

0 comments on commit aba7150

Please sign in to comment.