fix: force fixed 64px row height on leaderboard rows to prevent last-… #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: npm install | |
| - run: npx playwright install --with-deps chromium | |
| - run: node --check fandom.js | |
| - run: node --check router.js | |
| - run: node --check data-layer.js | |
| - run: node scripts/privacy-smoke.mjs | |
| - run: node scripts/smoke.mjs |