mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-22 03:17:40 +03:00
Fix CI timeout (#8408)
This commit is contained in:
parent
f3e3c186dc
commit
a7a7d62502
2
.github/workflows/cd-deploy-main.yaml
vendored
2
.github/workflows/cd-deploy-main.yaml
vendored
@ -1,11 +1,11 @@
|
||||
name: CD deploy main
|
||||
timeout-minutes: 3
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
deploy-main:
|
||||
timeout-minutes: 3
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Repository Dispatch
|
||||
|
2
.github/workflows/cd-deploy-tag.yaml
vendored
2
.github/workflows/cd-deploy-tag.yaml
vendored
@ -1,11 +1,11 @@
|
||||
name: CD deploy tag
|
||||
timeout-minutes: 3
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
jobs:
|
||||
deploy-tag:
|
||||
timeout-minutes: 3
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Repository Dispatch
|
||||
|
2
.github/workflows/ci-chrome-extension.yaml
vendored
2
.github/workflows/ci-chrome-extension.yaml
vendored
@ -1,5 +1,4 @@
|
||||
name: CI Chrome Extension
|
||||
timeout-minutes: 15
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
@ -13,6 +12,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
chrome-extension-build:
|
||||
timeout-minutes: 15
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
VITE_SERVER_BASE_URL: http://localhost:3000
|
||||
|
2
.github/workflows/ci-e2e.yml.bak
vendored
2
.github/workflows/ci-e2e.yml.bak
vendored
@ -1,5 +1,4 @@
|
||||
name: CI E2E Tests
|
||||
timeout-minutes: 30
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
@ -14,6 +13,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
6
.github/workflows/ci-front.yaml
vendored
6
.github/workflows/ci-front.yaml
vendored
@ -1,5 +1,4 @@
|
||||
name: CI Front
|
||||
timeout-minutes: 30
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
@ -13,6 +12,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
front-sb-build:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
REACT_APP_SERVER_BASE_URL: http://localhost:3000
|
||||
@ -59,6 +59,7 @@ jobs:
|
||||
if: steps.changed-files.outputs.any_changed == 'true'
|
||||
run: npx nx storybook:build twenty-front
|
||||
front-sb-test:
|
||||
timeout-minutes: 30
|
||||
runs-on: shipfox-8vcpu-ubuntu-2204
|
||||
needs: front-sb-build
|
||||
strategy:
|
||||
@ -101,6 +102,7 @@ jobs:
|
||||
if: steps.changed-files.outputs.any_changed == 'true'
|
||||
run: npx nx storybook:serve-and-test:static twenty-front --configuration=${{ matrix.storybook_scope }}
|
||||
front-sb-test-performance:
|
||||
timeout-minutes: 30
|
||||
runs-on: shipfox-8vcpu-ubuntu-2204
|
||||
env:
|
||||
REACT_APP_SERVER_BASE_URL: http://localhost:3000
|
||||
@ -134,6 +136,7 @@ jobs:
|
||||
if: steps.changed-files.outputs.any_changed == 'true'
|
||||
run: npx nx run twenty-front:storybook:serve-and-test:static:performance
|
||||
front-chromatic-deployment:
|
||||
timeout-minutes: 30
|
||||
if: contains(github.event.pull_request.labels.*.name, 'run-chromatic') || github.event_name == 'push'
|
||||
needs: front-sb-build
|
||||
runs-on: ubuntu-latest
|
||||
@ -176,6 +179,7 @@ jobs:
|
||||
if: steps.changed-files.outputs.any_changed == 'true'
|
||||
run: npx nx run twenty-front:chromatic:ci
|
||||
front-task:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0
|
||||
|
2
.github/workflows/ci-release-create.yaml
vendored
2
.github/workflows/ci-release-create.yaml
vendored
@ -1,5 +1,4 @@
|
||||
name: "Release: create"
|
||||
timeout-minutes: 10
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
@ -16,6 +15,7 @@ on:
|
||||
|
||||
jobs:
|
||||
create_pr:
|
||||
timeout-minutes: 10
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
2
.github/workflows/ci-release-merge.yaml
vendored
2
.github/workflows/ci-release-merge.yaml
vendored
@ -1,5 +1,4 @@
|
||||
name: "Release: on merge"
|
||||
timeout-minutes: 10
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
@ -7,6 +6,7 @@ on:
|
||||
|
||||
jobs:
|
||||
tag_and_release:
|
||||
timeout-minutes: 10
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
|
||||
steps:
|
||||
|
4
.github/workflows/ci-server.yaml
vendored
4
.github/workflows/ci-server.yaml
vendored
@ -1,5 +1,4 @@
|
||||
name: CI Server
|
||||
timeout-minutes: 30
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
@ -13,6 +12,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
server-setup:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0
|
||||
@ -68,6 +68,7 @@ jobs:
|
||||
run: npx nx run twenty-server:worker:ci
|
||||
|
||||
server-test:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
needs: server-setup
|
||||
env:
|
||||
@ -103,6 +104,7 @@ jobs:
|
||||
tasks: test
|
||||
|
||||
server-integration-test:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
needs: server-setup
|
||||
services:
|
||||
|
@ -1,5 +1,4 @@
|
||||
name: 'Test Docker Compose'
|
||||
timeout-minutes: 10
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
@ -9,6 +8,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
timeout-minutes: 10
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
2
.github/workflows/ci-tinybird.yaml
vendored
2
.github/workflows/ci-tinybird.yaml
vendored
@ -1,5 +1,4 @@
|
||||
name: CI Tinybird
|
||||
timeout-minutes: 10
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
@ -13,6 +12,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
timeout-minutes: 10
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check for changed files
|
||||
|
3
.github/workflows/ci-utils.yaml
vendored
3
.github/workflows/ci-utils.yaml
vendored
@ -1,5 +1,4 @@
|
||||
name: CI Utils
|
||||
timeout-minutes: 3
|
||||
on:
|
||||
# it's usually not recommended to use pull_request_target
|
||||
# but we consider it's safe here if we keep the same steps
|
||||
@ -20,6 +19,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
danger-js:
|
||||
timeout-minutes: 3
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.action != 'closed'
|
||||
steps:
|
||||
@ -32,6 +32,7 @@ jobs:
|
||||
DANGER_GITHUB_API_TOKEN: ${{ github.token }}
|
||||
|
||||
congratulate:
|
||||
timeout-minutes: 3
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.action == 'closed' && github.event.pull_request.merged == true
|
||||
steps:
|
||||
|
1
.github/workflows/ci-website.yaml
vendored
1
.github/workflows/ci-website.yaml
vendored
@ -14,6 +14,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
website-build:
|
||||
timeout-minutes: 3
|
||||
runs-on: ubuntu-latest
|
||||
services:
|
||||
postgres:
|
||||
|
Loading…
Reference in New Issue
Block a user