chore(deps): bump axios from 0.30.0 to 1.12.2 in /client #203
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: Client Unit Tests | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/client_ci_unit_tests.yml' | |
| - 'package.json' | |
| - 'client/**' | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| working-directory: client | |
| jobs: | |
| client-unit-tests: | |
| name: Client Unit Tests | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Node setup | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: 'client/.nvmrc' | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| package_json_file: 'client/package.json' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run unit tests | |
| run: pnpm vitest |