Files
headlamp-agent-skills/.github/workflows/ci.yaml
T
Chris Farhood eed19193a6
CI / lint (pull_request) Successful in 47s — Run 489 confirmed success. Admin merge PRI-1655.
Promotion Gate Board-authorized admin merge PRI-1655. CEO approval granted.
CI / lint Successful in 47s — Run 489. Admin merge PRI-1655.
CI / ci (pull_request) Successful in 47s — Run 489 confirmed success. Admin merge PRI-1655.
Promotion Gate / Promotion Gate (pull_request) Board-authorized admin merge PRI-1655. CEO approval granted.
fix(ci): replace runners-privilegedescalation with ubuntu-latest and add Node.js setup
The self-hosted runner label runners-privilegedescalation has been deprecated.
Migrate to ubuntu-latest which requires adding an explicit Node.js setup
step since ubuntu-latest does not have Node.js pre-installed.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-20 16:18:52 +00:00

25 lines
422 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Lint Markdown
uses: DavidAnson/markdownlint-cli2-action@v22
with:
globs: '**/*.md'