Skip to content

fix(web): fit the leaderboard above the fold #320

fix(web): fit the leaderboard above the fold

fix(web): fit the leaderboard above the fold #320

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
root:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.1
- uses: actions/setup-node@v7
with:
node-version: 26
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run build
- run: npm audit --package-lock-only
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.1
- uses: actions/setup-node@v7
with:
node-version: 26
cache: npm
cache-dependency-path: web/package-lock.json
- run: npm ci
working-directory: web
- run: npm run build
working-directory: web
- run: npm audit --package-lock-only
working-directory: web