Skip to content

Commit

Permalink
[FS-6] Do assets precompile before running tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
beetlegius-jt committed Jan 21, 2025
1 parent b59c2ee commit 022484c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ jobs:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:postgres@localhost:5432
# REDIS_URL: redis://localhost:6379/0
run: bin/rails db:test:prepare && bin/rspec
run: |
bin/rails db:test:prepare
bin/rails assets:precompile
bin/rspec
- name: Keep screenshots from failed system tests
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 022484c

Please sign in to comment.