fix(ci): build Tailwind CSS before running RSpec

The test job never compiled app/assets/builds/tailwind.css, so every spec touching a layout failed with Propshaft::MissingAssetError.

Seto Elkahfi committed Jul 5, 2026 at 09:02 UTC ef9023b5c501d636c18414b37d28b4a50cc3b381
1 file changed +3
.github/workflows/ci.yml
+3
index c633b6c..1187614 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,6 +108,9 @@ jobs: - name: Prepare the test database run: bin/rails db:test:prepare + - name: Build Tailwind CSS + run: bin/rails tailwindcss:build + - name: Run RSpec run: bundle exec rspec