Make JSON depth limits and experiment verification deterministic (#9) #14
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: Repository Health | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| health: | |
| name: Baseline repository checks | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 | |
| - name: Check required maintenance files | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| required=( | |
| "README.md" | |
| "CONTRIBUTING.md" | |
| "SECURITY.md" | |
| ".github/PULL_REQUEST_TEMPLATE.md" | |
| ".github/dependabot.yml" | |
| ) | |
| missing=() | |
| for file in "${required[@]}"; do | |
| if [[ ! -f "$file" ]]; then | |
| missing+=("$file") | |
| fi | |
| done | |
| if (( ${#missing[@]} )); then | |
| printf 'Missing required repository file: %s\n' "${missing[@]}" | |
| exit 1 | |
| fi | |
| - name: Check for unresolved merge conflict markers | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| if git grep -n -E '^(<{7}|>{7})([[:space:]].*)?$|^={7}$' -- ':!package-lock.json' ':!pnpm-lock.yaml' ':!yarn.lock'; then | |
| echo "Unresolved merge conflict markers were found." | |
| exit 1 | |
| fi | |
| - name: Validate GitHub YAML files | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| ruby -e 'require "yaml"; Dir[".github/workflows/*.{yml,yaml}", ".github/dependabot.y*ml", ".github/ISSUE_TEMPLATE/*.{yml,yaml}"].flatten.each { |path| YAML.load_file(path) }; puts "GitHub YAML files are valid"' |