Fix mobile sidebar closed state #173
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docs Forbidden Check | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' | |
| jobs: | |
| docs-forbidden: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Check forbidden items in docs | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| forbidden=( | |
| "docs/project-management" | |
| "docs/src" | |
| "docs/package.json" | |
| "docs/node_modules" | |
| ) | |
| for path in "${forbidden[@]}"; do | |
| if [ -e "$path" ]; then | |
| echo "Forbidden path exists: $path" | |
| exit 1 | |
| fi | |
| done | |
| echo "docs forbidden items: OK" |