chore: remove — —

This commit is contained in:
Liam DeBeasi
2023-11-03 12:26:38 -04:00
parent 670849088e
commit 91000ddcec
4 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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