From 7c792d6520f6a3650baecb8eba9afc521630917f Mon Sep 17 00:00:00 2001 From: MathieuG-P <40181755+Zagrios@users.noreply.github.com> Date: Sun, 24 Sep 2023 18:13:09 +0200 Subject: [PATCH] [chore] try e2e tests with no auto-update --- .github/workflows/e2e-tests.yaml | 2 +- src/main/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-tests.yaml b/.github/workflows/e2e-tests.yaml index 9c74e956..4920e5ec 100644 --- a/.github/workflows/e2e-tests.yaml +++ b/.github/workflows/e2e-tests.yaml @@ -25,7 +25,7 @@ jobs: cache: "npm" - name: Install dependencies - run: npm i + run: npm ci - name: Build run: npm run build diff --git a/src/main/main.ts b/src/main/main.ts index 2271cd00..4a68b148 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -53,7 +53,7 @@ const installExtensions = async () => { .catch(log.error); }; -const createWindow = async (window: AppWindow = "launcher.html") => { +const createWindow = async (window: AppWindow = "index.html") => { if (isDebug) { await installExtensions(); }