Skip to content

feat(claude): configure agents with sonnet model and add draft PR sup… #206

feat(claude): configure agents with sonnet model and add draft PR sup…

feat(claude): configure agents with sonnet model and add draft PR sup… #206

Workflow file for this run

name: Linters
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: false
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
- name: Install Prettier
run: npm install -g prettier
- name: Check Prettier formatting
run: prettier --check "**/*.{json,yaml,yml,md}" --ignore-path .gitignore
- name: Shellcheck
uses: ludeeus/action-shellcheck@master
with:
scandir: "./scripts"
format: gcc
severity: warning
- name: YAML Lint
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: "."
config_file: .yamllint.yml