chore: bump axios from 1.13.6 to 1.14.0 #652
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: Kenya API CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| # 1️⃣ Tests first — hard fail | |
| - name: Run tests | |
| run: yarn test | |
| # 2️⃣ Lint / format — errors fail, warnings pass | |
| - name: Biome check | |
| run: yarn check | |
| # or explicitly: | |
| # run: yarn biome check . --error-on-warnings=false | |
| # 3️⃣ Build only if everything above passed | |
| - name: Build | |
| run: yarn build |