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