Skip to content

feat: enhance loading state with SiteHeader and Skeleton components #28

feat: enhance loading state with SiteHeader and Skeleton components

feat: enhance loading state with SiteHeader and Skeleton components #28

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node 24
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:run
- name: Run lint
run: npm run lint
- name: Build app
run: npm run build