Danger scripts for Taqtile projects
Danger base file for Taqtile projects
On your project root folder:
Gemfile
with
source "https://rubygems.org"
gem "danger", "4.2.1"
$ bundle install
Dangerfile
with
@platform = "nodejs" # Possible platforms are "nodejs", "ios", "android" and "web"
danger.import_dangerfile(github: "indigotech/danger")
To execute Danger on your project referencing a local file instead of Github you can use the following command
danger.import_dangerfile(path: "/absolute/path/to/your/Dangerfile-folder")
There are currently two ways of working with your dangerfile locally
Run danger locally against a PR on github
$ bundle exec danger pr <link to github PR>
Run danger locally against the last merged PR on the current branch. Please note that Danger detects the last merged PR, and not the last merge. So you’ll need to have a PR setup on github anyways.
$ bundle exec danger local
DANGER_GITHUB_API_TOKEN
environment variable to enable Danger
to access Github PR and add comments.
export DANGER_GITHUB_API_TOKEN=$YOUR_CURRENT_GITHUB_TOKEN_VARIABLE
$ bundle exec danger --dangerfile=path/to/Dangerfile
.gitignore
, Gemfile
, Gemfile.lock
, .travis.yml
>>>
Strings to make sure rebase was successfulGemfile
was modified and Gemfile.lock
was notDangerfile
was modifiedhttp://
is usedyarn.lock
, docker-compose.yml
, Procfile
, npm-shrinkwrap.json
, node_modules
, env.coffee
npm install -g
is used.env
or .nvmrc
files are modifiedconsole.log
is addedpackage.json
was modified and yarn.lock
or shrinkwrap
was not<any>
as return type.Cakefile
, settings.yml.erb
, Fastfile
Podfile
was modified and Podfile.lock
was notTODO
is addedprint(“”)
is addedfatalError
is added.xib
.xib
.gradle
or Manifest.xml
files are modifiedyarn.lock
, docker-compose.yml
, Procfile
, npm-shrinkwrap.json
, node_modules
, env.coffee
npm install -g
is used.env
or .nvmrc
files are modifiedconsole.log
is addedpackage.json
was modified and yarn.lock
or shrinkwrap
was not<any>
as return type.DANGER_GITHUB_API_TOKEN
Local repository was not found on GitHub. If you’re trying to test a private repository please provide a valid API token through DANGER_GITHUB_API_TOKEN environment variable.
$ export DANGER_GITHUB_API_TOKEN=your token here