chore(deps): bump actions/download-artifact from 5.0.0 to 8.0.1 #263
Workflow file for this run
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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: "npm" | |
| - run: npm ci | |
| - uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3 | |
| - 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: Build | |
| run: uv run contributor-network build |