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 08a7440 commit 57cde2bCopy full SHA for 57cde2b
.travis.yml
@@ -34,6 +34,7 @@ jobs:
34
- stage: test
35
script:
36
- npx danger ci
37
+ script:
38
- yarn lint
39
- yarn test:unit --runInBand
40
- yarn test:e2e --headless
dangerfile.js
@@ -1,8 +1,7 @@
1
/* eslint-disable */
2
-import * as fs from "fs";
3
-import * as path from "path";
4
-
5
-var validateMessage = require("validate-commit-msg");
+const fs = require("fs");
+const path = require("path");
+const validateMessage = require("validate-commit-msg");
6
7
const packageChanged = danger.git.modified_files.includes("package.json");
8
const lockfileChanged = danger.git.modified_files.includes("yarn.lock");
0 commit comments