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 7fe56f1 commit 05896c5Copy full SHA for 05896c5
.github/workflows/ci.yml
@@ -316,17 +316,23 @@ jobs:
316
working-directory: ./pr
317
318
- run: npm ci
319
+ id: base-npm-ci
320
+ continue-on-error: true
321
working-directory: ./base
322
323
- run: npx hereby lkg
324
325
326
327
+ id: base-lkg
328
329
+ if: ${{ steps.base-npm-ci.outcome == 'success' }}
330
331
332
- run: |
333
echo "See $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID for more info."
334
node ./pr/scripts/checkPackageSize.mjs ./base ./pr >> $GITHUB_STEP_SUMMARY
335
+ if: ${{ steps.base-lkg.outcome == 'success' }}
336
337
misc:
338
runs-on: ubuntu-latest
0 commit comments