chore(deps-dev): bump @types/node from 25.0.10 to 25.2.0 in /tracker/… #583
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: tracker | |
| on: | |
| push: | |
| branches: ['master'] | |
| paths: ['tracker/**'] | |
| pull_request: | |
| branches: ['master'] | |
| paths: ['tracker/**'] | |
| jobs: | |
| build-frontend: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| name: Build on ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: 'npm' | |
| cache-dependency-path: tracker/frontend/package-lock.json | |
| - name: Install frontend dependencies | |
| run: npm i | |
| working-directory: tracker/frontend | |
| - name: Build frontend | |
| run: npm run build | |
| working-directory: tracker/frontend |