chexpire/.travis.yml

31 lines
581 B
YAML

language:
- ruby
cache:
- bundler
- yarn
node_js: 9
sudo: required # required with chrome addon
addons:
chrome: stable
before_install:
- cp config/database.example.yml config/database.yml
- cp config/secrets.example.yml config/secrets.yml
# Test configuration loaded from chexpire.defaults.yml,
# but chexpire.yml file is required
- touch config/chexpire.yml
install:
- bundle install
- yarn install
- rails db:create db:migrate
script:
- bundle exec rubocop
- bundle exec rails test NO_COVERAGE=1
- bundle exec rails test:system NO_COVERAGE=1