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:29 UTC
3b2ee7336711aacaa78051bb2c3d898ddf9ed625
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