Skip to content

feat: add 404 Not Found page with styled routing #5

feat: add 404 Not Found page with styled routing

feat: add 404 Not Found page with styled routing #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm test
env:
JWT_SECRET: test-secret
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npm run build