Skip to content

Commit

Permalink
ci: Fix timeout for CI jobs (#2249)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza committed Jul 26, 2024
1 parent 92dd945 commit a88beae
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ jobs:
version: 2
check-types:
name: Check Types
timeout-minutes: 5
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: npm
- run: npm ci
- name: Build Types
run: npm run build:types
Expand All @@ -31,19 +35,27 @@ jobs:
run: npm run lint:types
check-docs:
name: Check Docs
timeout-minutes: 5
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: npm
- run: npm ci
- name: Check Docs
run: npm run docs
check-circular:
name: Check Circular Dependencies
timeout-minutes: 5
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: npm
- run: npm ci
- name: Circular Dependencies
run: npm run madge:circular
Expand Down

0 comments on commit a88beae

Please sign in to comment.