chore(deps): bump actions/checkout from 7.0.0 to 7.0.1 in the github-… #400
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: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: "npm" | |
| - run: npm ci | |
| - uses: astral-sh/ruff-action@278981a28ce3188b1e39527901f38254bf3aac89 # v4.1.0 | |
| - name: Format | |
| run: ruff format --check --diff | |
| - name: Type check (Python) | |
| run: uv run mypy | |
| - name: Test (Python) | |
| run: uv run pytest | |
| - name: Type check (TypeScript) | |
| run: npm run typecheck | |
| - name: Test (TypeScript) | |
| run: npm test | |
| - name: Generate data | |
| run: uv run contributor-network build | |
| - name: Build frontend | |
| run: npm run build |