We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c495de + af41e9f commit 6d932e2Copy full SHA for 6d932e2
.github/workflows/test.yml
@@ -0,0 +1,14 @@
1
+name: test
2
+on:
3
+ push:
4
+ branches: [ master ]
5
+ pull_request:
6
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
Gruntfile.js
100644
100755
@@ -13,7 +13,8 @@ module.exports = function (grunt) {
},
simplemocha: {
15
options: {
16
- timeout: 10000
+ timeout: 10000,
17
+ retries: 10
18
19
all: {
20
src: [ 'test/**/*_spec.js' ]
0 commit comments