Skip to content

Commit 5f35839

Browse files
authored
fix(build): Raise time limit for build to 20 minutes (#4847)
All of the changes happening to the build process (and all of the new bundles we're producing) mean that sometimes the build step is failing because it times out. While in the long run we should fix the build to be faster, in the short run, this ups the time limit, so at least CI won't error out unnecessarily.
1 parent 66509fd commit 5f35839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
name: Build
6363
needs: job_install_deps
6464
runs-on: ubuntu-latest
65-
timeout-minutes: 15
65+
timeout-minutes: 20
6666
steps:
6767
- name: Check out current commit (${{ env.HEAD_COMMIT }})
6868
uses: actions/checkout@v2

0 commit comments

Comments
 (0)