Files
ss-calculator/.travis.yml
2020-08-20 16:45:31 +01:00

21 lines
401 B
YAML

language: ruby
rvm:
- 2.5
- 2.6
bundler_args: --without production
services:
- postgresql
before_script:
- cp config/database.yml.travis config/database.yml
- bundle exec rake db:create db:test:prepare
- bundle exec rails webpacker:compile
cache:
yarn: true
directories:
- node_modules
install:
- bundle install
- nvm install node
- node -v
- npm i -g yarn
- yarn install