From 137567554dff7a6f44346dc939326cd54bb8c255 Mon Sep 17 00:00:00 2001 From: Simon Laux Date: Sat, 15 Oct 2022 22:58:48 +0200 Subject: [PATCH] set timeout for node ci tests to 10min (#3675) * set timeout for node ci tests to 10min set timeout for node ci tests to 10min for the test step, macOS takes 12min for the whole workflow with cached core build, so 10min just for the test step should be plenty. * don't forget to set the limit on windows, too --- .github/workflows/node-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/node-tests.yml b/.github/workflows/node-tests.yml index 8beb22b17..6f90530da 100644 --- a/.github/workflows/node-tests.yml +++ b/.github/workflows/node-tests.yml @@ -52,6 +52,7 @@ jobs: npm install --verbose - name: Test + timeout-minutes: 10 if: runner.os != 'Windows' run: | cd node @@ -59,6 +60,7 @@ jobs: env: DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }} - name: Run tests on Windows, except lint + timeout-minutes: 10 if: runner.os == 'Windows' run: | cd node