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
This commit is contained in:
Jonathan Desrosiers 2022-09-23 17:01:46 +00:00
parent d557380e42
commit 310a5b8a7c

View File

@ -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