We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 314c511 commit 660576cCopy full SHA for 660576c
.github/workflows/downstream.yml
@@ -25,9 +25,13 @@ jobs:
25
matrix:
26
include:
27
- url: https://github.com/rails/tailwindcss-rails
28
- name: tailwindcss-rails
+ name: rails-unit
29
command: "bin/test"
30
ruby: "3.3"
31
+ - url: https://github.com/rails/tailwindcss-rails
32
+ name: rails-integration
33
+ command: "test/integration/user_journey_test.sh"
34
+ ruby: "3.3"
35
runs-on: ubuntu-latest
36
steps:
37
- uses: actions/checkout@v4
@@ -41,7 +45,4 @@ jobs:
41
45
- name: ${{matrix.name}} test suite
42
46
working-directory: ${{matrix.name}}
43
47
run: |
44
- bundle remove tailwindcss-ruby || true
- bundle add tailwindcss-ruby --path=".."
- bundle install --local || bundle install
- ${{matrix.command}}
48
+ TAILWINDCSSOPTS='--path=".."' ${{matrix.command}}
0 commit comments