Skip to content

fix: replace broken version detection with clean CI script (#270) #13

fix: replace broken version detection with clean CI script (#270)

fix: replace broken version detection with clean CI script (#270) #13

Workflow file for this run

name: Lint
on:
push:
branches: [main]
paths:
- '.github/workflows/lint.yml'
pull_request:
branches: [main]
paths:
- '.github/workflows/lint.yml'
jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install YAML linter
run: npm install -g yaml-lint
- name: Lint YAML files
run: yamllint .github/workflows/*.{yml,yaml}