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 11, 2019
1 parent ffb8ed3 commit 9a7c89f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 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.

0 comments on commit 9a7c89f

Please sign in to comment.