This repository was archived by the owner on Feb 9, 2026. It is now read-only.
build(deps-dev): bump @types/node from 25.2.0 to 25.2.1 in /frontend #458
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 | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 1 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v6.0.1 | |
| - name: pnpm setup | |
| uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 | |
| with: | |
| package_json_file: frontend/package.json | |
| - name: Install dependencies | |
| run: pnpm install | |
| working-directory: frontend | |
| - name: Format and Lint | |
| run: pnpm run check | |
| working-directory: frontend | |
| - name: Test | |
| run: pnpm run test | |
| working-directory: frontend | |
| - name: Build | |
| run: pnpm run build | |
| working-directory: frontend |