From 4da701deb51ddb58ce74eed3e563f674fdbd7835 Mon Sep 17 00:00:00 2001 From: Amit Haridas Date: Mon, 8 Jun 2026 06:46:11 +0530 Subject: [PATCH] ci: run on react-electron branch and ensure both jest and vitest run --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d008622..9718b3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [master, react-electron] pull_request: - branches: [master] + branches: [master, react-electron] jobs: test: @@ -24,5 +24,8 @@ jobs: - name: Run tests run: npm test + - name: Run renderer tests + run: npm run test:renderer + - name: Run linter run: npm run lint