From 91000ddcec414b8f6f0d548961b2332f4af8c91c Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 3 Nov 2023 12:26:38 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20remove=20=E2=80=94=20=E2=80=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../actions/build-core-stencil-prerelease/action.yml | 2 +- .github/workflows/actions/build-core/action.yml | 2 +- .github/workflows/actions/test-core-screenshot/action.yml | 4 ++-- .github/workflows/actions/test-core-spec/action.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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