Skip to content

Update all minor and patch github action updates #99

Update all minor and patch github action updates

Update all minor and patch github action updates #99

# Make sure to enable 'Require status checks to pass before merging' on the branch protection,
# and to select the 'prettier_check' action.
name: Prettier Check
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
prettier_check:
if: github.actor != 'renovate[bot]'
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: '24'
- name: Install Dependencies
run: npm ci
- name: Run Prettier Check
run: npx prettier --check .