Update Beta v4 migration guide for Cancun and Prague #3472
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: Check file name case | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| jobs: | |
| case: | |
| name: Check for case being inconsistent | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| folder: ["docs"] | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Case check action | |
| uses: Consensys/docs-gha/docs-case-check@main | |
| with: | |
| DOC_DIR: ${{ matrix.folder }} |