From 310a5b8a7ce883c929ea68fa7e3935f763094d54 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 23 Sep 2022 17:01:46 +0000 Subject: [PATCH] Build/Test Tools: Increase the timeout value for MacOS jobs. The current `timeout-minutes` value of `20` is a bit too short for MacOS jobs in GitHub Actions, which on occasion take a bit longer. This bumps that limit to `30` to avoid unnecessarily flagging a job as stuck. See #55652. git-svn-id: https://develop.svn.wordpress.org/trunk@54293 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/test-npm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-npm.yml b/.github/workflows/test-npm.yml index 142d428ae0..c377a121f8 100644 --- a/.github/workflows/test-npm.yml +++ b/.github/workflows/test-npm.yml @@ -118,7 +118,7 @@ jobs: test-npm-macos: name: Test NPM on MacOS runs-on: macos-latest - timeout-minutes: 20 + timeout-minutes: 30 if: ${{ github.repository == 'WordPress/wordpress-develop' }} steps: - name: Checkout repository