Skip to content

feat: implement dark mode support with theme toggle and CSS adjustments #6

feat: implement dark mode support with theme toggle and CSS adjustments

feat: implement dark mode support with theme toggle and CSS adjustments #6

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [master, develop]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: package-lock.json
- name: Instalar dependencias (raiz)
run: npm ci
- name: Testes backend
run: npm test
- name: Instalar dependencias (frontend)
run: npm ci --prefix frontend
- name: Lint frontend
run: npm run lint --prefix frontend
- name: Build frontend
run: npm run build --prefix frontend