From e440051764fa6224a67224ef2b473ce7d51a9174 Mon Sep 17 00:00:00 2001 From: Alice Pote Date: Thu, 22 Feb 2024 13:38:14 -0500 Subject: [PATCH] chore(ci): add `--debug --verbose` to stencil nightly build (#29078) Set the `--debug` and `--verbose` flags on the Stencil Nightly CI build. ## What is the current behavior? The Stencil nightly build doesn't provide all the information that it could! ## What is the new behavior? This sets the `--debug` and `--verbose` flags when calling `npm run build` in the 'Build Ionic Core with Stencil Prerelease' github action, which is used by the workflow which installs nightly Stencil builds and builds framework with it, thereby checking for regressions. This change will just ensure that this nightly build provides a bit more information. ## Does this introduce a breaking change? - [ ] Yes - [x] No --- .../workflows/actions/build-core-stencil-prerelease/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions/build-core-stencil-prerelease/action.yml b/.github/workflows/actions/build-core-stencil-prerelease/action.yml index c584a0500a..6ad678cec9 100644 --- a/.github/workflows/actions/build-core-stencil-prerelease/action.yml +++ b/.github/workflows/actions/build-core-stencil-prerelease/action.yml @@ -22,7 +22,7 @@ runs: run: npm i @stencil/core@${{ inputs.stencil-version }} shell: bash - name: Build Core - run: npm run build -- --ci + run: npm run build -- --ci --debug --verbose working-directory: ./core shell: bash - uses: ./.github/workflows/actions/upload-archive