Skip to content

Commit 6d932e2

Browse files
Merge pull request #126 from node-red-hitachi/master-addci
Use GitHub Actions instead of Travis CI
2 parents 1c495de + af41e9f commit 6d932e2

File tree

3 files changed

+16
-21
lines changed

3 files changed

+16
-21
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: test
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2
13+
- run: npm install
14+
- run: npm test

.travis.yml

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

Gruntfile.js

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ module.exports = function (grunt) {
1313
},
1414
simplemocha: {
1515
options: {
16-
timeout: 10000
16+
timeout: 10000,
17+
retries: 10
1718
},
1819
all: {
1920
src: [ 'test/**/*_spec.js' ]

0 commit comments

Comments
 (0)