From a88beae970ac69516da8f8c950130fe42ea8bb70 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Fri, 26 Jul 2024 23:59:43 +0200 Subject: [PATCH] ci: Fix timeout for CI jobs (#2249) --- .github/workflows/ci.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 767f9b995..abe11369f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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