Bump axios from 1.12.0 to 1.13.5 in the npm_and_yarn group across 1 directory #112
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: | |
| - master | |
| - develop | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup project files | |
| uses: ./.github/actions/setup | |
| with: | |
| node-version: 20 | |
| - name: Check Prettier formatting | |
| run: npm run format:check | |
| - name: Run tests | |
| run: npm run test:unit |