Skip to content

Commit 9a7c89f

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

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
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.

0 commit comments

Comments
 (0)