CREATE_GUILD_EXPRESSIONS and CREATE_EVENTS permissions for 🤖 (#7991) #2082
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: Verify Docs Formatting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| markdown_tables: | |
| name: Check Markdown Tables | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install Node v20 | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check Markdown Tables | |
| run: | | |
| shopt -s globstar | |
| npx markdown-table-formatter docs/**/*.{md,mdx} --check | |
| shell: bash |