fix: phone compaction — testimonial card + onboarding sized for small… #13
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: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| web: | |
| name: typecheck · lint · build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| # npm install (not ci): the lockfile is maintained on Windows, and npm has a | |
| # long-standing bug where platform-specific optional deps (@emnapi/* etc.) | |
| # never sync perfectly across OSes — npm ci then hard-fails. install | |
| # reconciles them on the runner and is deterministic enough for CI. | |
| - run: npm install --no-audit --no-fund | |
| - run: npx tsc --noEmit | |
| - run: npm run lint | |
| - run: npm run build | |
| env: | |
| # public testnet config is enough for a build; no secrets required | |
| NEXT_PUBLIC_SUI_NETWORK: testnet |