Skip to content

Feat/runtime config (#51) #111

Feat/runtime config (#51)

Feat/runtime config (#51) #111

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: CI
jobs:
test:
name: Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
timeout-minutes: 15
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: "app/package-lock.json"
- name: Install dependencies
run: npm ci
- name: Run lint checks
run: npm run lint
- name: Run type checks
run: npm run type-check
- name: Run unit tests
run: npm run test:unit
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}