|
|
@ -3,14 +3,16 @@
|
|
|
|
set -e # Fail the whole script on first error
|
|
|
|
set -e # Fail the whole script on first error
|
|
|
|
|
|
|
|
|
|
|
|
# Fetch Ruby gem dependencies
|
|
|
|
# Fetch Ruby gem dependencies
|
|
|
|
bundle install --path vendor/bundle --with='development test'
|
|
|
|
bundle config path 'vendor/bundle'
|
|
|
|
|
|
|
|
bundle config with 'development test'
|
|
|
|
# Fetch Javascript dependencies
|
|
|
|
bundle install
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Make Gemfile.lock pristine again
|
|
|
|
# Make Gemfile.lock pristine again
|
|
|
|
git checkout -- Gemfile.lock
|
|
|
|
git checkout -- Gemfile.lock
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Fetch Javascript dependencies
|
|
|
|
|
|
|
|
yarn --frozen-lockfile
|
|
|
|
|
|
|
|
|
|
|
|
# [re]create, migrate, and seed the test database
|
|
|
|
# [re]create, migrate, and seed the test database
|
|
|
|
RAILS_ENV=test ./bin/rails db:setup
|
|
|
|
RAILS_ENV=test ./bin/rails db:setup
|
|
|
|
|
|
|
|
|
|
|
|