You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix shellcheck SC2209 by using single-line background commands
Shellcheck was complaining about the multiline format for background
processes. Changed to single-line format using && to combine cd and
command execution.
Before:
```yaml
run: |
cd spec/dummy
RAILS_ENV=test rails server &
```
After:
```yaml
run: cd spec/dummy && RAILS_ENV=test rails server &
```
This eliminates the SC2209 warning while maintaining the same functionality.
Fixes: .github/workflows/pro-integration-tests.yml:207-217, 384-394
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments