diff --git a/.github/workflows/build-private.yml b/.github/workflows/build-private.yml index e766a219..6b4cd5bc 100644 --- a/.github/workflows/build-private.yml +++ b/.github/workflows/build-private.yml @@ -15,6 +15,8 @@ name: Build - Private jobs: build: runs-on: ubuntu-latest + timeout-minutes: 10 + steps: - name: "Check out code" uses: actions/checkout@v4 diff --git a/.github/workflows/build-public.yml b/.github/workflows/build-public.yml index daf55a77..ce84a39f 100644 --- a/.github/workflows/build-public.yml +++ b/.github/workflows/build-public.yml @@ -15,6 +15,8 @@ name: Build - Public jobs: build: runs-on: ubuntu-latest + timeout-minutes: 10 + steps: - name: "Check out code" uses: actions/checkout@v4 diff --git a/.github/workflows/generate-api-docs.yml b/.github/workflows/generate-api-docs.yml index ea5ad066..6cc8e1f0 100644 --- a/.github/workflows/generate-api-docs.yml +++ b/.github/workflows/generate-api-docs.yml @@ -6,6 +6,7 @@ on: jobs: api_docs: runs-on: ubuntu-latest + timeout-minutes: 10 services: pgsql_test: diff --git a/.github/workflows/npm-build.yml b/.github/workflows/npm-build.yml index 8bf52914..cf8cb58e 100644 --- a/.github/workflows/npm-build.yml +++ b/.github/workflows/npm-build.yml @@ -4,8 +4,8 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + timeout-minutes: 10 steps: - name: "Checkout code" diff --git a/.github/workflows/npm-lint.yml b/.github/workflows/npm-lint.yml index 9a837c7a..8802b9de 100644 --- a/.github/workflows/npm-lint.yml +++ b/.github/workflows/npm-lint.yml @@ -4,8 +4,8 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + timeout-minutes: 10 steps: - name: "Checkout code" diff --git a/.github/workflows/npm-typecheck.yml b/.github/workflows/npm-typecheck.yml index d271613c..ebc80574 100644 --- a/.github/workflows/npm-typecheck.yml +++ b/.github/workflows/npm-typecheck.yml @@ -4,8 +4,8 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + timeout-minutes: 10 steps: - name: "Checkout code" diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 240a9246..91e61138 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -3,6 +3,7 @@ on: push jobs: phpstan: runs-on: ubuntu-latest + timeout-minutes: 10 steps: - name: "Checkout code" diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 36219375..a64075d3 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -3,6 +3,7 @@ on: push jobs: phpunit: runs-on: ubuntu-latest + timeout-minutes: 10 services: pgsql_test: diff --git a/.github/workflows/pint.yml b/.github/workflows/pint.yml index ddb92db0..2e6439ed 100644 --- a/.github/workflows/pint.yml +++ b/.github/workflows/pint.yml @@ -3,6 +3,8 @@ on: push jobs: pint: runs-on: ubuntu-latest + timeout-minutes: 10 + steps: - name: "Checkout code" uses: actions/checkout@v4 diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index d76979fc..630eb1e8 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -2,8 +2,9 @@ name: Playwright Tests on: [push] jobs: test: - timeout-minutes: 60 runs-on: ubuntu-latest + timeout-minutes: 60 + services: mailpit: image: 'axllent/mailpit:latest'