blob: 011e0b83818b98a9dcef7bbe03954d9abcd79adb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# Copyright (C) Project Tick
# SPDX-License-Identifier: MIT
#
# Fast lint & commit checks — called from ci.yml before builds start.
name: "Lint & Checks"
on:
workflow_call:
inputs:
run-level:
description: "minimal | standard | full"
required: true
type: string
changed-projects:
description: "Comma-separated list of changed projects"
required: false
type: string
default: ""
permissions:
contents: read
jobs:
# ── Commit message lint (Conventional Commits) ──────────────────
commit-lint:
name: "Commit Messages"
runs-on: ubuntu-latest
steps:
- name: Harden runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Install dependencies
working-directory: ci/github-script
run: npm ci
- name: Lint commit messages
uses: actions/github-script@v7
with:
script: |
const lint = require('./ci/github-script/lint-commits.js')
await lint({ github, context, core, repoPath: '.' })
# ── REUSE / license compliance ──────────────────────────────────
reuse:
name: "REUSE Compliance"
runs-on: ubuntu-latest
steps:
- name: Harden runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@v6
- name: Check REUSE compliance
uses: fsfe/reuse-action@v6
# ── Whitespace & formatting checks ─────────────────────────────
whitespace:
name: "Whitespace"
runs-on: ubuntu-latest
steps:
- name: Harden runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@v6
- name: Check trailing whitespace
run: |
set -euo pipefail
ERRORS=$(git diff --check HEAD~1 HEAD -- \
':!*.patch' \
':!*/test/data/*' \
':!*.ico' \
':!*.png' \
':!*.jpg' \
':!*.gif' \
':!*.bin' \
':!*.7z' \
':!*.zip' \
':!*.gz' \
':!*.lock' \
2>/dev/null || true)
if [[ -n "$ERRORS" ]]; then
echo "::warning::Whitespace issues found:"
echo "$ERRORS"
fi
# ── Actionlint (validate all workflow YAML) ─────────────────────
actionlint:
name: "Actionlint"
runs-on: ubuntu-latest
steps:
- name: Harden runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@v6
- name: Run actionlint
uses: raven-actions/actionlint@v2
with:
matcher: true
|