Skip to content

chore(http): add outbound timeouts for Horizon and external integrati… #136

chore(http): add outbound timeouts for Horizon and external integrati…

chore(http): add outbound timeouts for Horizon and external integrati… #136

Workflow file for this run

name: CI — Lint, Typecheck & Test
on:
push:
branches:
- '**'
pull_request:
branches:
- main
- develop
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
name: Lint, Typecheck & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typecheck (tsc --noEmit)
run: npm run typecheck
- name: Lint (ESLint)
run: npm run lint
- name: Run tests with coverage
run: npm run test:coverage
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/
retention-days: 7