Skip to content

Commit

Permalink
fix(build): Raise time limit for build to 20 minutes (#4847)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lobsterkatie committed Apr 4, 2022
1 parent 66509fd commit 5f35839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
name: Build
needs: job_install_deps
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 20
steps:
- name: Check out current commit (${{ env.HEAD_COMMIT }})
uses: actions/checkout@v2
Expand Down

0 comments on commit 5f35839

Please sign in to comment.