feat: add overview heading to post and table of contents for better navigation #488
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: ci | |
| on: | |
| pull_request: | |
| branches: | |
| - redesign | |
| pull_request_review: | |
| types: [submitted] | |
| push: | |
| branches: | |
| - redesign | |
| # Cancel in progress workflows | |
| # in the scenario where we already had a run going for that PR/branch/tag but then triggered a new run | |
| concurrency: | |
| group: "${{ github.workflow }} ✨ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| if: | | |
| github.event.pull_request.draft != true && | |
| (github.event_name == 'pull_request_review' && github.event.review.state == 'approved') || | |
| github.event_name != 'pull_request_review' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| # node-version-file: ".nvmrc" use when .nvmrc is on root of the repo | |
| node-version: "24.13" | |
| # cache: "npm" use when package-lock.json is on root of the repo | |
| - name: Install Node.js dependencies | |
| working-directory: astro | |
| run: npm ci | |
| - name: Run tests | |
| working-directory: astro | |
| shell: bash | |
| run: npm run check | |
| build: | |
| name: build | |
| runs-on: ubuntu-latest | |
| if: | | |
| github.event.pull_request.draft != true && | |
| (github.event_name == 'pull_request_review' && github.event.review.state == 'approved') || | |
| github.event_name != 'pull_request_review' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| # node-version-file: ".nvmrc" use when .nvmrc is on root of the repo | |
| node-version: "24.13" | |
| # cache: "npm" use when package-lock.json is on root of the repo | |
| - name: Install Node.js dependencies | |
| working-directory: astro | |
| run: npm ci | |
| - name: Build Astro site | |
| working-directory: astro | |
| run: npm run build | |
| linkChecker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| # TODO: use astro action, when pnpm action is enabled in the org | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| # node-version-file: ".nvmrc" use when .nvmrc is on root of the repo | |
| node-version: "24.13" | |
| # cache: "npm" use when package-lock.json is on root of the repo | |
| - name: Install Node.js dependencies | |
| working-directory: astro | |
| run: npm ci | |
| - name: Build Astro site | |
| working-directory: astro | |
| run: npm run build | |
| - name: Check links | |
| uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2.7.0 | |
| with: | |
| workingDirectory: astro # TODO: change when Astro site is moved to root | |
| args: | | |
| --root-dir $PWD/dist | |
| --remap "https://expressjs\.com\/((?:[^\/]+\/)*[^\/\.]+)\/?$ file://$PWD/dist/\$1/index.html" | |
| --remap "https://expressjs\.com\/(.*\.html)$ file://$PWD/dist/\$1" | |
| dist/ | |
| fail: true |