We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c10a1e commit 3773ba5Copy full SHA for 3773ba5
1 file changed
.github/workflows/code-quality.yml
@@ -139,6 +139,10 @@ jobs:
139
echo "✅ All packages are up to date" >> $GITHUB_STEP_SUMMARY
140
fi
141
142
+ - name: Install infrastructure dependencies
143
+ working-directory: ./infrastructure
144
+ run: npm ci
145
+
146
- name: Run infrastructure tests with detailed coverage
147
working-directory: ./infrastructure
148
run: |
@@ -218,6 +222,15 @@ jobs:
218
222
219
223
220
224
225
+ - name: Clean up sensitive files
226
+ if: always()
227
+ run: |
228
+ echo "🧹 Cleaning up sensitive files..."
229
+ rm -f .env
230
+ rm -f infrastructure/.env
231
+ rm -rf infrastructure/cdk.out
232
+ echo "✅ Sensitive files cleaned up"
233
221
234
- name: Archive test results
235
if: always()
236
uses: actions/upload-artifact@v4
0 commit comments