Skip to content

fix: use useNavigate instead of location push #25

fix: use useNavigate instead of location push

fix: use useNavigate instead of location push #25

Workflow file for this run

name: Build Check
on:
push:
branches: [master]
pull_request:
jobs:
build:
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: Build Client
run: npm run build:client
- name: Build Server
run: npm run build:server