Skip to content

deps: Update dependency anolishq/anolis to v0.1.29 #14

deps: Update dependency anolishq/anolis to v0.1.29

deps: Update dependency anolishq/anolis to v0.1.29 #14

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6
with:
version: latest
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Build docs (includes dead-link validation)
run: pnpm build
env:
# Authenticate downstream GitHub API/asset fetches to avoid the
# unauthenticated rate limit. Missing release assets are non-fatal
# on PR builds (GITHUB_EVENT_NAME=pull_request) — see fetch-metrics.mjs.
GITHUB_TOKEN: ${{ github.token }}
ok:
name: ok
if: always()
needs: [build]
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Evaluate job results
run: |
echo "Job results: ${{ toJSON(needs.*.result) }}"
- name: Fail if any required job failed or was cancelled
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1