Commit 28892b1
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 <[email protected]>1 parent ae50b3e commit 28892b1
1 file changed
+4
-16
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
205 | 205 | | |
206 | 206 | | |
207 | 207 | | |
208 | | - | |
209 | | - | |
210 | | - | |
211 | | - | |
| 208 | + | |
212 | 209 | | |
213 | 210 | | |
214 | | - | |
215 | | - | |
216 | | - | |
217 | | - | |
| 211 | + | |
218 | 212 | | |
219 | 213 | | |
220 | 214 | | |
| |||
384 | 378 | | |
385 | 379 | | |
386 | 380 | | |
387 | | - | |
388 | | - | |
389 | | - | |
390 | | - | |
| 381 | + | |
391 | 382 | | |
392 | 383 | | |
393 | | - | |
394 | | - | |
395 | | - | |
396 | | - | |
| 384 | + | |
397 | 385 | | |
398 | 386 | | |
399 | 387 | | |
| |||
0 commit comments