From 13b774df01f38e411c6ec1494a9856a10489c95f Mon Sep 17 00:00:00 2001 From: Marco Comi Date: Wed, 18 Dec 2024 11:59:38 +0100 Subject: [PATCH 1/3] Remove hardcoded version from workflow --- .github/workflows/web_app_deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/web_app_deploy.yaml b/.github/workflows/web_app_deploy.yaml index 0c8238e2..94113f5f 100644 --- a/.github/workflows/web_app_deploy.yaml +++ b/.github/workflows/web_app_deploy.yaml @@ -47,7 +47,7 @@ jobs: name: Checkout - name: Prune - run: npx turbo@1.13.3 prune --scope ${{ env.WORKSPACE }} + run: npx turbo prune --scope ${{ env.WORKSPACE }} - name: Setup Node.js uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 From 43385b736be24d542924a26bf641247824b76a32 Mon Sep 17 00:00:00 2001 From: Marco Comi Date: Wed, 18 Dec 2024 12:45:50 +0100 Subject: [PATCH 2/3] Enable corepack --- .github/workflows/web_app_deploy.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/web_app_deploy.yaml b/.github/workflows/web_app_deploy.yaml index 94113f5f..cdb02eef 100644 --- a/.github/workflows/web_app_deploy.yaml +++ b/.github/workflows/web_app_deploy.yaml @@ -49,6 +49,9 @@ jobs: - name: Prune run: npx turbo prune --scope ${{ env.WORKSPACE }} + - name: Enable Corepack + run: corepack enable + - name: Setup Node.js uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: From 175afe715ca8830bd03554fe13e276a4e5092c25 Mon Sep 17 00:00:00 2001 From: Marco Comi Date: Thu, 19 Dec 2024 14:31:07 +0100 Subject: [PATCH 3/3] Set major version of turbo --- .github/workflows/web_app_deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/web_app_deploy.yaml b/.github/workflows/web_app_deploy.yaml index cdb02eef..fcf79ad8 100644 --- a/.github/workflows/web_app_deploy.yaml +++ b/.github/workflows/web_app_deploy.yaml @@ -47,7 +47,7 @@ jobs: name: Checkout - name: Prune - run: npx turbo prune --scope ${{ env.WORKSPACE }} + run: npx turbo@2 prune --scope ${{ env.WORKSPACE }} - name: Enable Corepack run: corepack enable