From a16a88fa8ee8e49ac4e614fc201f190c0d67a2f3 Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Wed, 16 Oct 2024 14:57:35 +0200 Subject: [PATCH] Move Front CI from Github runner to shipfox runner (#7749) Trying out a CI runner provider called "ShipFox" (https://docs.shipfox.io/) Let's see how it works ;) --- .github/workflows/ci-front.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-front.yaml b/.github/workflows/ci-front.yaml index b61506709..e90e7012f 100644 --- a/.github/workflows/ci-front.yaml +++ b/.github/workflows/ci-front.yaml @@ -43,7 +43,7 @@ jobs: - name: Front / Build storybook run: npx nx storybook:build twenty-front front-sb-test: - runs-on: ci-8-cores + runs-on: shipfox-8vcpu-ubuntu-2204 needs: front-sb-build strategy: matrix: @@ -68,7 +68,7 @@ jobs: - name: Run storybook tests run: npx nx storybook:serve-and-test:static twenty-front --configuration=${{ matrix.storybook_scope }} front-sb-test-performance: - runs-on: ci-8-cores + runs-on: shipfox-8vcpu-ubuntu-2204 env: REACT_APP_SERVER_BASE_URL: http://localhost:3000 NX_REJECT_UNKNOWN_LOCAL_CACHE: 0