From a6ced0d4199dec000cd3eb4b7e1ed624c687e288 Mon Sep 17 00:00:00 2001 From: Siarhei Dudko Date: Wed, 21 Dec 2022 14:35:34 +0400 Subject: [PATCH] test ci --- .github/workflows/autoupdate.yml | 1 + test/shell.test.js | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml index 75e0b6e..9fee87d 100644 --- a/.github/workflows/autoupdate.yml +++ b/.github/workflows/autoupdate.yml @@ -12,6 +12,7 @@ jobs: update: env: SERVICE_ACCOUNT: ${{ secrets.SERVICE_ACCOUNT }} + GOOGLE_APPLICATION_CREDENTIALS: ${{ github.workspace }}/tmp/serviceAccount.json runs-on: ubuntu-latest timeout-minutes: 10 outputs: diff --git a/test/shell.test.js b/test/shell.test.js index 082b3d9..1212669 100644 --- a/test/shell.test.js +++ b/test/shell.test.js @@ -6,7 +6,6 @@ const runTest = async () => { const childProcess = spawn(join(__dirname, "..", "./bin/firebase-cli.js"), { cwd: join(__dirname, ".."), env: process.env, - stdio: ["pipe", "pipe", "pipe"], }); const childProcExitEvent = new Promise((res) => { childProcess.once("exit", (code) => {