docs(website): add under construction callouts and refine pages #11205
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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| branches: | |
| - "**" | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=102400 | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup node@24 | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 24 | |
| - name: Install pnpm | |
| run: npm i pnpm@11 -g | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Install front-end dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build front-end assets | |
| run: pnpm run build | |
| - name: Test on node@24 | |
| run: pnpm run test | |
| - name: Setup node@22 | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 22 | |
| - name: Test on node@22 | |
| run: pnpm run test |