Skip to content

Commit

Permalink
chore: increase ci timeout (#2036)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocavue committed Apr 25, 2023
1 parent 157fd13 commit c516998
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
# Lint the project
lint:
timeout-minutes: 15
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: checkout code repository
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:

# Typecheck the project
typecheck:
timeout-minutes: 15
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: checkout code repository
Expand All @@ -59,7 +59,7 @@ jobs:

# Unit test
unit_test:
timeout-minutes: 15
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: checkout code repository
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

# Build the project and run tests on built files.
build_test:
timeout-minutes: 15
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -116,7 +116,7 @@ jobs:

# Check that package sizes are within their boundaries
size_check:
timeout-minutes: 15
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: checkout code repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
# Run the e2e playwright tests
playwright:
timeout-minutes: 10
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Publish the public packages to npm
npm:
if: github.event.workflow_run.conclusion == 'success'
timeout-minutes: 10
timeout-minutes: 30
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Publish the public packages to npm
npm:
if: github.event.workflow_run.conclusion == 'success'
timeout-minutes: 10
timeout-minutes: 30
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
# Update package versions with changesets.
version:
timeout-minutes: 15
timeout-minutes: 30
runs-on: ubuntu-latest
if: ${{ false == contains(github.ref, 'changeset') && github.repository == 'remirror/remirror' }}
steps:
Expand Down

1 comment on commit c516998

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉 Published on https://remirror.io as production
🚀 Deployed on https://64485888f5de0642f4aff166--remirror.netlify.app

Please sign in to comment.