We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23f229 commit 2f44fbbCopy full SHA for 2f44fbb
.github/workflows/test_typescript.yml
@@ -9,7 +9,8 @@ jobs:
9
- uses: actions/checkout@v2
10
- uses: actions/setup-node@v1
11
12
- - run: |
+ - name: Run TypeScript Compiler Tests with new dom.d.ts
13
+ run: |
14
# Get local dependencies
15
npm install
16
# Make our new dom APIs
dangerfile.js
@@ -1,4 +1,4 @@
1
-const {message} = require("danger")
+const {markdown} = require("danger")
2
const {readFileSync, existsSync} = require("fs")
3
const parseDiff = require("parse-diff")
4
@@ -28,6 +28,7 @@ if (existsSync(diffPath)) {
28
md.push("```")
29
})
30
31
-
32
- message(md.join("\n"))
+ if (md.length > 2) {
+ markdown(md.join("\n"))
33
+ }
34
}
0 commit comments