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.
1 parent cf6f38c commit 1fdecadCopy full SHA for 1fdecad
.github/workflows/test.yml
@@ -0,0 +1,24 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - master
5
+ pull_request:
6
+
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ node-version: [8]
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Setup Python 3.8
16
+ uses: actions/setup-python@v4
17
+ with:
18
+ python-version: '3.8'
19
+ - name: Use Node.js ${{ matrix.node-version }}
20
+ uses: actions/setup-node@v4
21
22
+ node-version: ${{ matrix.node-version }}
23
+ - run: npm install
24
+ - run: npm test
.travis.yml
test/mocha.opts
@@ -1,5 +1,4 @@
--require should
--reporter spec
--ui bdd
---growl
-test
+test
0 commit comments