Skip to content

feat(core): New Hooks #184

feat(core): New Hooks

feat(core): New Hooks #184

Workflow file for this run

name: Check Format
on:
- push
- pull_request
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9.11.0
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Check format
run: pnpm run format:check