Skip to content

Bump the minor-updates group across 1 directory with 22 updates #102

Bump the minor-updates group across 1 directory with 22 updates

Bump the minor-updates group across 1 directory with 22 updates #102

name: NPM Format Check
on: [push]
jobs:
format-check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Use Node.js"
uses: actions/setup-node@v6
with:
node-version: '22.x'
cache: 'npm'
- name: "Install npm dependencies"
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
npm_config_audit: 'false'
npm_config_fund: 'false'
run: npm ci --no-audit --no-fund --no-progress
- name: "Check code formatting"
run: npm run format:check