Skip to content

ci(deps): bump actions/checkout from 6.0.2 to 7.0.0 #59

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

ci(deps): bump actions/checkout from 6.0.2 to 7.0.0 #59

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- 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