Skip to content

Commit 7824467

Browse files
Checking to see if the failure is due to a poorly configured turbo.json file
1 parent c778ac3 commit 7824467

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

.github/workflows/codeql.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,15 @@ jobs:
206206

207207
- name: Build example for iOS
208208
run: |
209-
yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
210-
echo "${{ env.TURBO_CACHE_DIR }}"
209+
yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
210+
echo "${{ env.TURBO_CACHE_DIR }}"
211211
212212
213-
# - name: 'Upload Artifact'
214-
# uses: actions/upload-artifact@v4
215-
# with:
216-
# name: ios-artifact
217-
# path:
213+
# - name: 'Upload Artifact'
214+
# uses: actions/upload-artifact@v4
215+
# with:
216+
# name: ios-artifact
217+
# path:
218218

219219

220220
# Add any setup steps before running the `github/codeql-action/init` action.
@@ -236,16 +236,16 @@ jobs:
236236
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
237237
queries: ${{ matrix.language && 'security-extended, security-and-quality' }}
238238

239-
- if: matrix.build-mode == 'manual'
240-
shell: bash
241-
run: |
242-
echo 'If you are using a "manual" build mode for one or more of the' \
243-
'languages you are analyzing, replace this with the commands to build' \
244-
'your code, for example:'
245-
echo ' make bootstrap'
246-
echo ' make release'
247-
exit 1
248-
- name: Perform CodeQL Analysis
249-
uses: github/codeql-action/analyze@v3
250-
with:
251-
category: "/language:${{matrix.language}}"
239+
- if: matrix.build-mode == 'manual'
240+
shell: bash
241+
run: |
242+
echo 'If you are using a "manual" build mode for one or more of the' \
243+
'languages you are analyzing, replace this with the commands to build' \
244+
'your code, for example:'
245+
echo ' make bootstrap'
246+
echo ' make release'
247+
exit 1
248+
- name: Perform CodeQL Analysis
249+
uses: github/codeql-action/analyze@v3
250+
with:
251+
category: "/language:${{matrix.language}}"

turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"!example/ios/build",
3131
"!example/ios/Pods"
3232
],
33-
"outputs": []
33+
"outputs": [".turbo/cache"]
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)