* feat(frontend): convert to ts * refactor(frontend): axios-override - simplify shouldMock type * fix: refine stage labels * refactor(frontend): refine `useUserId` signature * fix(frontend): descriptionLines and langsCount can be undefined * refactor(frontend): refine casting on redirectCode * refactor(frontend): refine stageIndex title and types * refactor(frontend): apply pr review comments changes * refactor(frontend): group properties using reference groups * refactor(frontend): remove outdated comment * fix(frontend): mock-http - simplify code
78 lines
1.6 KiB
YAML
78 lines
1.6 KiB
YAML
name: CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- monorepo # to be removed once we complete monorepo tasks
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
build-and-test:
|
|
name: Build and test ${{ matrix.node }} on ${{ matrix.os }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node: [24]
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install Dependencies
|
|
uses: ./.github/actions/install-dependencies
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- name: Run vercel-preparation.sh
|
|
run: |
|
|
chmod +x ./vercel-preparation.sh
|
|
./vercel-preparation.sh
|
|
|
|
- name: Build frontend
|
|
run: pnpm --filter frontend run build-trends
|
|
|
|
code-checks:
|
|
name: Code checks
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install Dependencies
|
|
uses: ./.github/actions/install-dependencies
|
|
|
|
# needed to resolve .vercel folder from apps/frontend/src/components/Card/SVG.js
|
|
- name: Run vercel-preparation.sh
|
|
run: |
|
|
chmod +x ./vercel-preparation.sh
|
|
./vercel-preparation.sh
|
|
|
|
- name: Format
|
|
run: pnpm run format:check
|
|
|
|
- name: Lint
|
|
run: pnpm run lint
|
|
|
|
- name: Lint (knip)
|
|
run: pnpm run lint:knip
|
|
|
|
- name: Typecheck
|
|
run: pnpm run typecheck
|