Skip to content

Commit b699425

Browse files
committed
chore: cap timeouts at 10 minutes
1 parent f8ead06 commit b699425

11 files changed

Lines changed: 26 additions & 15 deletions

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
jobs:
1919
setup:
2020
runs-on: ubuntu-latest
21-
timeout-minutes: 30
21+
timeout-minutes: 10
2222
steps:
2323
- name: Get Latest
2424
uses: actions/setup-node@v6
@@ -32,7 +32,7 @@ jobs:
3232
key: ${{ runner.OS }}-dependencies-cache-${{ hashFiles('**/package.json') }}
3333
lint:
3434
runs-on: macos-15
35-
timeout-minutes: 30
35+
timeout-minutes: 10
3636
steps:
3737
- uses: actions/setup-node@v6
3838
with:
@@ -48,7 +48,7 @@ jobs:
4848
- run: npm run lint
4949
test-cli:
5050
runs-on: macos-15
51-
timeout-minutes: 30
51+
timeout-minutes: 10
5252
needs:
5353
- setup
5454
- lint
@@ -69,7 +69,7 @@ jobs:
6969
working-directory: ./cli
7070
test-core:
7171
runs-on: ubuntu-latest
72-
timeout-minutes: 30
72+
timeout-minutes: 10
7373
needs:
7474
- setup
7575
- lint
@@ -90,7 +90,7 @@ jobs:
9090
working-directory: ./core
9191
test-ios:
9292
runs-on: macos-15
93-
timeout-minutes: 30
93+
timeout-minutes: 10
9494
needs:
9595
- setup
9696
- lint
@@ -118,7 +118,7 @@ jobs:
118118
run: sh ./scripts/native-podspec.sh lint
119119
test-android:
120120
runs-on: ubuntu-latest
121-
timeout-minutes: 30
121+
timeout-minutes: 10
122122
needs:
123123
- setup
124124
- lint

.github/workflows/publish-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
publish-android:
2424
runs-on: ubuntu-latest
25-
timeout-minutes: 30
25+
timeout-minutes: 10
2626
permissions:
2727
contents: read
2828
packages: write

.github/workflows/publish-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
publish-ios:
1212
runs-on: macos-15
13-
timeout-minutes: 30
13+
timeout-minutes: 10
1414
steps:
1515
- run: sudo xcode-select --switch /Applications/Xcode_26.0.app
1616
- run: xcrun simctl list > /dev/null

.github/workflows/publish-npm-alpha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
deploy-npm-alpha:
1111
runs-on: macos-15
12-
timeout-minutes: 30
12+
timeout-minutes: 10
1313
steps:
1414
- uses: actions/checkout@v5
1515
with:

.github/workflows/publish-npm-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
deploy-npm-beta:
1111
runs-on: macos-15
12-
timeout-minutes: 30
12+
timeout-minutes: 10
1313
steps:
1414
- uses: actions/checkout@v5
1515
with:

.github/workflows/publish-npm-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
deploy-npm-dev:
1111
runs-on: macos-15
12-
timeout-minutes: 30
12+
timeout-minutes: 10
1313
steps:
1414
- uses: actions/checkout@v5
1515
with:

.github/workflows/publish-npm-latest-from-pre.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
deploy-npm-latest:
1818
if: github.ref == 'refs/heads/main'
1919
runs-on: macos-15
20-
timeout-minutes: 30
20+
timeout-minutes: 10
2121
steps:
2222
- uses: actions/checkout@v5
2323
with:

.github/workflows/publish-npm-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
deploy-npm-latest:
1818
if: github.ref == 'refs/heads/main'
1919
runs-on: macos-15
20-
timeout-minutes: 30
20+
timeout-minutes: 10
2121
steps:
2222
- uses: actions/checkout@v5
2323
with:

.github/workflows/publish-npm-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
deploy-npm-nightly:
1313
if: github.ref == 'refs/heads/main'
1414
runs-on: macos-15
15-
timeout-minutes: 30
15+
timeout-minutes: 10
1616
steps:
1717
- uses: actions/checkout@v5
1818
with:

.github/workflows/publish-npm-rc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
deploy-npm-rc:
1111
runs-on: macos-15
12-
timeout-minutes: 30
12+
timeout-minutes: 10
1313
steps:
1414
- uses: actions/checkout@v5
1515
with:

0 commit comments

Comments
 (0)