Skip to content

Merge pull request #4 from ameshkin/feature/react-router #5

Merge pull request #4 from ameshkin/feature/react-router

Merge pull request #4 from ameshkin/feature/react-router #5

Workflow file for this run

# .github/workflows/ci-dev.yml
name: CI — dev 🛠️
on:
push:
branches: [dev]
pull_request:
branches: [dev]
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
build-and-test:
name: Build & Test (Node 20) 🧪
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: true
env:
CI: true
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4
- name: 🔧 Setup Node 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: 📦 Install, 🔎 Typecheck, 🏗️ Build, ✅ Test
run: |
set -euo pipefail
npm ci
npm run typecheck
npm run build
npm test -- --run