fix: address PR #65 review feedback on error-checking-feedback-loops.md (#86)

- Fix yaml code block to bash at line 80 (shell command, not YAML)
- Remove useless cat pipe: use grep directly on test-output.log
- Remove useless cat pipe: use grep directly on phpcs-output.log

Closes #71
This commit is contained in:
2026-03-17 20:45:53 +00:00
committed by GitHub
parent 8fda3f1163
commit 632dda5952

View File

@@ -77,7 +77,7 @@ uses: actions/upload-artifact@v4
**Solution**: Use port 80 for multisite environments: **Solution**: Use port 80 for multisite environments:
```yaml ```bash
npx @wp-playground/cli server --blueprint playground/multisite-blueprint.json --port 80 --login & npx @wp-playground/cli server --blueprint playground/multisite-blueprint.json --port 80 --login &
``` ```
@@ -142,7 +142,7 @@ npm run test:playground:multisite
2. **Analyze Output for Errors**: 2. **Analyze Output for Errors**:
```bash ```bash
cat test-output.log | grep -i 'error\|fail\|exception' grep -i 'error\|fail\|exception' test-output.log
``` ```
3. **Parse Structured Test Results** (if available): 3. **Parse Structured Test Results** (if available):
@@ -221,7 +221,7 @@ npm run lint:css
2. **Analyze Output for Errors**: 2. **Analyze Output for Errors**:
```bash ```bash
cat phpcs-output.log | grep -i 'ERROR\|WARNING' grep -i 'ERROR\|WARNING' phpcs-output.log
``` ```
3. **Automatically Fix Issues** (when possible): 3. **Automatically Fix Issues** (when possible):