From 2578d0e1ed673a9464fe41892c55a8e74a33aa97 Mon Sep 17 00:00:00 2001 From: flx-sta <50131232+flx-sta@users.noreply.github.com> Date: Tue, 10 Sep 2024 13:37:52 -0700 Subject: [PATCH] add missing `$` in test-shard-template.yml` --- .github/workflows/test-shard-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-shard-template.yml b/.github/workflows/test-shard-template.yml index 5faf8620c71..0133f788e96 100644 --- a/.github/workflows/test-shard-template.yml +++ b/.github/workflows/test-shard-template.yml @@ -23,4 +23,4 @@ jobs: - name: Install Node.js dependencies run: npm ci - name: Run tests - run: npx vitest --project main --shard={{ inputs.shard }}/{{ inputs.totalShards }} ${{ !runner.debug && '--silent' || '' }} + run: npx vitest --project main --shard=${{ inputs.shard }}/${{ inputs.totalShards }} ${{ !runner.debug && '--silent' || '' }}