Skip to content

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3 #56

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3 #56

Workflow file for this run

name: Format Check
on:
pull_request:
paths:
- "**/*.md"
- "**/*.json"
- "**/*.yml"
- ".prettierrc"
jobs:
prettier:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: "22"
cache: npm
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check