Skip to content

fix(deps): update all non-major dependencies #2817

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #2817

Workflow file for this run

name: Format Check
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
format-check:
name: Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: '.node-version'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run format check
run: npm run format:check