Skip to content
Snippets Groups Projects
Unverified Commit b8ff4987 authored by Nick Schonning's avatar Nick Schonning Committed by GitHub
Browse files

Fix DevContainer post-create warnings (#23977)

parent 9d08b811
No related branches found
No related tags found
No related merge requests found
......@@ -3,14 +3,16 @@
set -e # Fail the whole script on first error
# Fetch Ruby gem dependencies
bundle install --path vendor/bundle --with='development test'
# Fetch Javascript dependencies
yarn install
bundle config path 'vendor/bundle'
bundle config with 'development test'
bundle install
# Make Gemfile.lock pristine again
git checkout -- Gemfile.lock
# Fetch Javascript dependencies
yarn --frozen-lockfile
# [re]create, migrate, and seed the test database
RAILS_ENV=test ./bin/rails db:setup
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment