Skip to content

Commit

Permalink
replaced Travis CI with GitHub Actions
Browse files Browse the repository at this point in the history
Travis seems a little flakey lately and is generally less convenient
  • Loading branch information
FND committed Dec 16, 2019
1 parent ffb8ed3 commit 84188a3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 12 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
10 changes: 0 additions & 10 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-js
==================

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

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

0 comments on commit 84188a3

Please sign in to comment.