docs: refine validator Docker port guidance #434
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: Run tests | ||
|
Check failure on line 1 in .github/workflows/test.yml
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - "**" | ||
| permissions: | ||
| contents: read | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| CI_RUN: true | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: ./.github/actions/prepare-runner | ||
| - run: cp .env.example .env | ||
| - name: Build (captures log for link check) | ||
| if: ${{ secrets.CODECOV_TOKEN != '' }} | ||
| shell: bash | ||
| env: | ||
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
| run: | | ||
| set -o pipefail | ||
| pnpm build 2>&1 | tee build.log | ||
| - name: Build (captures log for link check) | ||
| if: ${{ secrets.CODECOV_TOKEN == '' }} | ||
| shell: bash | ||
| run: | | ||
| set -o pipefail | ||
| pnpm build 2>&1 | tee build.log | ||
| - name: Report broken links (warn-only) | ||
| if: always() | ||
| run: node scripts/report-broken-links.mjs build.log | ||
| - run: pnpm test | ||