Skip to content

yaml: Add line before comment. #579

yaml: Add line before comment.

yaml: Add line before comment. #579

Workflow file for this run

name: "lint"
on:
pull_request:
types: ["opened", "reopened", "synchronize"]
push:
schedule:
# Run at midnight UTC every day with 15 minutes delay added to avoid high load periods
- cron: "15 0 * * *"
workflow_dispatch:
permissions:
# So the workflow can cancel in-progress jobs
actions: "write"
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
lint-check:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
with:
submodules: "recursive"
- uses: "actions/setup-node@v4"
with:
node-version: 22
- run: "npm clean-install"
- run: "npm run lint:ci"