Skip to content

test: add end-to-end integration tests for full pipeline #4

test: add end-to-end integration tests for full pipeline

test: add end-to-end integration tests for full pipeline #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- run: npm ci
- name: Type check
run: npm run typecheck
- name: Test
run: npm run test:run