Skip to content

Commit

Permalink
Revert "Try out an alias"
Browse files Browse the repository at this point in the history
This reverts commit 7c7f5ab.
  • Loading branch information
parndt committed Mar 21, 2023
1 parent 7c7f5ab commit 55c42f0
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ jobs:
- run: cp .env.sample .env
- run: docker compose build --build-arg RAILS_ENV=test
- run: docker compose pull
- run: alias dcr="docker compose run -e RAILS_ENV=test --rm app"
- run: dcr bundle config set without 'development'
- run: dcr bundle install
- run: dcr yarn install
- run: dcr bundle exec rake assets:precompile
- run: dcr bundle exec rake db:create
- run: dcr bundle exec rake db:migrate
- run: dcr bundle exec rspec -f d
- run: docker compose run -e RAILS_ENV=test --rm app bundle config set without 'development'
- run: docker compose run -e RAILS_ENV=test --rm app bundle install
- run: docker compose run -e RAILS_ENV=test --rm app yarn install
- run: docker compose run -e RAILS_ENV=test --rm app bundle exec rake assets:precompile
- run: docker compose run -e RAILS_ENV=test --rm app bundle exec rake db:create
- run: docker compose run -e RAILS_ENV=test --rm app bundle exec rake db:migrate
- run: docker compose run -e RAILS_ENV=test --rm app bundle exec rspec -f d

0 comments on commit 55c42f0

Please sign in to comment.