Questions tagged [danger]

Also known as Danger.js. Danger runs during your CI process, and gives teams the chance to automate common code review chores.

https://danger.systems/js/

Danger runs during your CI process, and gives teams the chance to automate common code review chores.

This provides another logical step in your build, through this Danger can help lint your rote tasks in daily code review.

You can use Danger to codify your teams norms. Leaving humans to think about harder problems.

This happens by Danger leaving messages inside your PRs based on rules that you create with JavaScript or TypeScript.

Over time, as rules are adhered to, the message is amended to reflect the current state of the code review.

17 questions
0
votes
1 answer

Danger does not warn when check should fail

I'm using Danger to check the PRs. My Dangerfile contains: # Alert if we are pointing to a debug SDK version if git.modified_files.include?("tutorials/sdk-refapp/build.gradle") diff = git.diff_for_file("tutorials/sdk-refapp/build.gradle") …
kingston
  • 11,053
  • 14
  • 62
  • 116
0
votes
1 answer

Run Danger locally failed with no informations

I am trying to run Danger locally with this command: danger pr https://github.com/MyOwner/MyRepo/pull/219 Each time, this command failed, without more informations... Traceback (most recent call last): 30: from /usr/local/bin/danger:23:in…
Kevin ABRIOUX
  • 16,507
  • 12
  • 93
  • 99
1
2