From e78a68fb031f7f102dc0feb1577779010533ee1c Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Fri, 17 Nov 2023 17:35:26 +0100 Subject: [PATCH] Fix --- .github/workflows/budibase_ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml index 3960ce09e6..e8133dd1ce 100644 --- a/.github/workflows/budibase_ci.yml +++ b/.github/workflows/budibase_ci.yml @@ -28,14 +28,14 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 with: - submodules: ${{ !env.IS_OSS_CONTRIBUTOR }} + submodules: ${{ env.IS_OSS_CONTRIBUTOR == false }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }} - name: Use Node.js 18.x uses: actions/setup-node@v3 with: node-version: 18.x - cache: ${{ env.is_oss_contributor == false && 'yarn' || '' }} + cache: ${{ env.IS_OSS_CONTRIBUTOR == false && 'yarn' || '' }} - run: yarn --frozen-lockfile - run: yarn lint @@ -45,7 +45,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 with: - submodules: ${{ !env.IS_OSS_CONTRIBUTOR }} + submodules: ${{ env.IS_OSS_CONTRIBUTOR == false }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }} fetch-depth: 0 @@ -53,7 +53,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18.x - cache: ${{ env.is_oss_contributor == false && 'yarn' || '' }} + cache: ${{ env.IS_OSS_CONTRIBUTOR == false && 'yarn' || '' }} - run: yarn --frozen-lockfile # Run build all the projects @@ -75,7 +75,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 with: - submodules: ${{ !env.IS_OSS_CONTRIBUTOR }} + submodules: ${{ env.IS_OSS_CONTRIBUTOR == false }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }} fetch-depth: 0 @@ -83,7 +83,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18.x - cache: ${{ env.is_oss_contributor == false && 'yarn' || '' }} + cache: ${{ env.IS_OSS_CONTRIBUTOR == false && 'yarn' || '' }} - run: yarn --frozen-lockfile - name: Test run: | @@ -104,7 +104,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 with: - submodules: ${{ !env.IS_OSS_CONTRIBUTOR }} + submodules: ${{ env.IS_OSS_CONTRIBUTOR == false }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }} fetch-depth: 0 @@ -112,7 +112,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18.x - cache: ${{ env.is_oss_contributor == false && 'yarn' || '' }} + cache: ${{ env.IS_OSS_CONTRIBUTOR == false && 'yarn' || '' }} - run: yarn --frozen-lockfile - name: Test worker run: | @@ -134,7 +134,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 with: - submodules: ${{ !env.IS_OSS_CONTRIBUTOR }} + submodules: ${{ env.IS_OSS_CONTRIBUTOR == false }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }} fetch-depth: 0 @@ -142,7 +142,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18.x - cache: ${{ env.is_oss_contributor == false && 'yarn' || '' }} + cache: ${{ env.IS_OSS_CONTRIBUTOR == false && 'yarn' || '' }} - run: yarn --frozen-lockfile - name: Test server run: | @@ -173,7 +173,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18.x - cache: ${{ env.is_oss_contributor == false && 'yarn' || '' }} + cache: ${{ env.IS_OSS_CONTRIBUTOR == false && 'yarn' || '' }} - run: yarn --frozen-lockfile - name: Test run: | @@ -189,14 +189,14 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 with: - submodules: ${{ !env.IS_OSS_CONTRIBUTOR }} + submodules: ${{ env.IS_OSS_CONTRIBUTOR == false }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }} - name: Use Node.js 18.x uses: actions/setup-node@v3 with: node-version: 18.x - cache: ${{ env.is_oss_contributor == false && 'yarn' || '' }} + cache: ${{ env.IS_OSS_CONTRIBUTOR == false && 'yarn' || '' }} - run: yarn --frozen-lockfile - name: Build packages run: yarn build --scope @budibase/server --scope @budibase/worker