Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/rails-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
background: true

# No dependencies of its own, so it can fire immediately too.
- name: Load Previous Turbo-Test Runtime Stats
- name: Load Previous Spec Runtime Stats
uses: actions/cache/restore@v6
with:
path: tmp/turbo_rspec_runtime.log
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
background: true

- name: Run Rspec Tests
run: bundle exec parallel_rspec --verbose spec/
run: bundle exec parallel_rspec --verbose --runtime-log tmp/turbo_rspec_runtime.log spec/
env:
CAPYBARA_DRIVER: js

Expand All @@ -287,7 +287,7 @@ jobs:
# None of these read each other's output — all four only consume
# artifacts already produced by Run Rspec Tests above.
- parallel:
- name: Save Turbo-Test Runtime Stats
- name: Save Spec Runtime Stats
if: always()
uses: actions/cache/save@v6
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# RoleModel/actions

## [v3.11.3] Aug 31, 2026

- Pass `--runtime-log tmp/turbo_rspec_runtime.log` to `parallel_rspec` in `rails-ci.yml` and both composite actions. They cached the runtime log at that path, but `parallel_rspec` reads `tmp/parallel_runtime_rspec.log`, so it found nothing and silently grouped specs by file size — leaving ~30% of a 16-process runner idle. Also renames the two cache steps to "Load/Save Spec Runtime Stats". (#33)

## [v3.11.2] Aug 20, 2026

- Bump outdated `actions/checkout` and `actions/setup-node` references, including `setup-node` in `rails-ci.yml`. (#30)
Expand Down
2 changes: 1 addition & 1 deletion linting-and-non-system-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ runs:

- name: Run Rspec Tests
shell: bash
run: bundle exec parallel_rspec --verbose --exclude-pattern "/system/"
run: bundle exec parallel_rspec --verbose --runtime-log tmp/turbo_rspec_runtime.log --exclude-pattern "/system/"

- name: Publish Test Results
uses: mikepenz/action-junit-report@v6
Expand Down
2 changes: 1 addition & 1 deletion system-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ runs:

- name: Run Rspec Tests
shell: bash
run: bundle exec parallel_rspec --verbose-command spec/system
run: bundle exec parallel_rspec --verbose-command --runtime-log tmp/turbo_rspec_runtime.log spec/system
env:
GOOGLE_CHROME_BIN: ${{ case(inputs.web-driver == 'selenium', steps.setup-chrome.outputs.chrome-path, '') }}
CAPYBARA_DRIVER: js
Expand Down