Skip to content

chore: bump dotenv from 17.3.1 to 17.4.0 #657

chore: bump dotenv from 17.3.1 to 17.4.0

chore: bump dotenv from 17.3.1 to 17.4.0 #657

Workflow file for this run

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