Skip to content

fix: use useNavigate instead of location push #27

fix: use useNavigate instead of location push

fix: use useNavigate instead of location push #27

Workflow file for this run

name: Check Format
on:
push:
branches: [master]
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Check format
run: npm run format:check