Skip to content

refactor(store): Extract UI slice from app-store.ts #1173

refactor(store): Extract UI slice from app-store.ts

refactor(store): Extract UI slice from app-store.ts #1173

Workflow file for this run

name: Format Check
on:
pull_request:
branches:
- '*'
push:
branches:
- main
- master
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm install --ignore-scripts --force
- name: Check formatting
run: npm run format:check