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 a7af6ce commit 937ba71Copy full SHA for 937ba71
2 files changed
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ jobs:
10
strategy:
11
matrix:
12
platform: [ubuntu-latest, windows-latest, macos-latest]
13
- node-version: [10, 12]
+ node-version: [10, 12, 13]
14
runs-on: ${{ matrix.platform }}
15
steps:
16
- name: Checkout
@@ -19,7 +19,7 @@ jobs:
19
uses: actions/setup-node@master
20
with:
21
node-version: ${{ matrix.node-version }}
22
- - name: Build and test
23
- run: |
24
- npm install
25
- npm test
+ - name: Install
+ run: npm install
+ - name: Test
+ run: npm test
package.json
@@ -40,7 +40,7 @@
40
},
41
"devDependencies": {
42
"browserify": "^16.0.0",
43
- "dtslint": "^0.9.0",
+ "dtslint": "^1.0.2",
44
"nyc": "^14.0.0",
45
"prettier": "^1.0.0",
46
"remark-cli": "^7.0.0",
0 commit comments