Skip to content

docs: refine validator Docker port guidance #434

docs: refine validator Docker port guidance

docs: refine validator Docker port guidance #434

Workflow file for this run

name: Run tests

Check failure on line 1 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

(Line: 27, Col: 13): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.CODECOV_TOKEN != '', (Line: 35, Col: 13): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.CODECOV_TOKEN == ''
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