This repository was archived by the owner on Jan 20, 2025. It is now read-only.
✅ Add a test option to show memory usage #240
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 - frontend | |
| on: | |
| push: | |
| paths: | |
| - 'frontend/**' | |
| pull_request: | |
| paths: | |
| - 'frontend/**' | |
| jobs: | |
| frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache-dependency-path: frontend/package-lock.json | |
| node-version: "20" | |
| cache: npm | |
| - name: Test Frontend with Vitest | |
| run: | | |
| npm --prefix ./frontend install | |
| make t_fe |