Skip to content

feat: added hero section to homepage #58

feat: added hero section to homepage

feat: added hero section to homepage #58

Workflow file for this run

# =============================================================================
# CI Workflow - Continuous Integration
# Runs on all PRs and pushes to main
# =============================================================================
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# Cancel in-progress runs when a new commit is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# ---------------------------------------------------------------------------
# Lint and Build
# ---------------------------------------------------------------------------
ci:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Build application
run: npm run build