diff --git a/.github/workflows/actions/build-core-stencil-prerelease/action.yml b/.github/workflows/actions/build-core-stencil-prerelease/action.yml index b52c07f5ac..5343c0600e 100644 --- a/.github/workflows/actions/build-core-stencil-prerelease/action.yml +++ b/.github/workflows/actions/build-core-stencil-prerelease/action.yml @@ -24,7 +24,7 @@ runs: run: pnpm i @stencil/core@${{ inputs.stencil-version }} shell: bash - name: Build Core - run: pnpm run build -- --ci + run: pnpm run build --ci working-directory: ./core shell: bash - uses: ./.github/workflows/actions/upload-archive diff --git a/.github/workflows/actions/build-core/action.yml b/.github/workflows/actions/build-core/action.yml index 0ca32c7804..925bd7f303 100644 --- a/.github/workflows/actions/build-core/action.yml +++ b/.github/workflows/actions/build-core/action.yml @@ -27,7 +27,7 @@ runs: working-directory: ./core shell: bash - name: Build Core - run: pnpm run build -- --ci + run: pnpm run build --ci working-directory: ./core shell: bash - uses: ./.github/workflows/actions/upload-archive diff --git a/.github/workflows/actions/test-core-screenshot/action.yml b/.github/workflows/actions/test-core-screenshot/action.yml index bc0340086f..e44e72e438 100644 --- a/.github/workflows/actions/test-core-screenshot/action.yml +++ b/.github/workflows/actions/test-core-screenshot/action.yml @@ -28,7 +28,7 @@ runs: working-directory: ./core - name: Test if: inputs.update != 'true' - run: pnpm run test.e2e -- --shard=${{ inputs.shard }}/${{ inputs.totalShards }} + run: pnpm run test.e2e --shard=${{ inputs.shard }}/${{ inputs.totalShards }} shell: bash working-directory: ./core - name: Test and Update @@ -50,7 +50,7 @@ runs: # which is why we not using the upload-archive # composite step here. run: | - pnpm run test.e2e -- --shard=${{ inputs.shard }}/${{ inputs.totalShards }} --update-snapshots + pnpm run test.e2e --shard=${{ inputs.shard }}/${{ inputs.totalShards }} --update-snapshots git add src/\*.png --force mkdir updated-screenshots cd ../ && rsync -R --progress $(git diff --name-only --cached) core/updated-screenshots diff --git a/.github/workflows/actions/test-core-spec/action.yml b/.github/workflows/actions/test-core-spec/action.yml index 8b6bdd1556..4dd641bb08 100644 --- a/.github/workflows/actions/test-core-spec/action.yml +++ b/.github/workflows/actions/test-core-spec/action.yml @@ -27,6 +27,6 @@ runs: path: ./core filename: CoreBuild.zip - name: Test - run: pnpm run test.spec -- --ci + run: pnpm run test.spec --ci shell: bash working-directory: ./core