mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
11 lines
289 B
YAML
11 lines
289 B
YAML
language: ruby
|
|
|
|
cache: bundler
|
|
|
|
before_script:
|
|
- gem update --system
|
|
- gem install bundler
|
|
|
|
script:
|
|
- if [ "$TRAVIS_EVENT_TYPE" != "cron" ]; then bundle exec rake; fi
|
|
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then bundle exec thor updates:check --github-token $GH_TOKEN --upload; fi
|