aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-03-16 14:44:54 +0000
committerMohamed Bassem <me@mbassem.com>2025-03-16 14:45:05 +0000
commit927cd89ebce414d22b1bb681495918120840e520 (patch)
tree314d2b6f41ac0c6dc0c9201188d4308d9894f079 /.github/workflows/ci.yml
parentad9aa96bd3ea9de81f9a5d0abb90591006b94523 (diff)
downloadkarakeep-927cd89ebce414d22b1bb681495918120840e520.tar.zst
ci: Run E2E tests in CI
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a0df2896..b1faa149 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -48,6 +48,21 @@ jobs:
- name: Typecheck
run: pnpm typecheck
+ tests:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup
+ uses: ./tooling/github/setup
+
+ - name: Shared Package Tests
+ working-directory: packages/shared
+ run: pnpm test
+
+ - name: E2E Tests
+ working-directory: packages/e2e_tests
+ run: pnpm test
open-api-spec:
runs-on: ubuntu-latest
steps: