chore: tweak change-tip
description
#6602
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: Release Test Link | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- 'frontend/**' | |
jobs: | |
link-tests: | |
runs-on: self-hosted | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.24.5' | |
cache: false # Caching is slow. | |
- name: Validate links | |
run: go test -timeout 600s -v ./scripts/... | tee test.log; exit ${PIPESTATUS[0]} |