diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 3648412a..4876eb1b 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -78,7 +78,6 @@ jobs: shard: [1, 2, 3, 4, 5, 6] steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/build-and-run-wodin - name: Get installed Playwright version run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./app/static/package-lock.json').packages['node_modules/@playwright/test'].version)")" >> $GITHUB_ENV @@ -93,8 +92,10 @@ jobs: if: steps.playwright-cache.outputs.cache-hit != 'true' run: npx playwright install --with-deps + - uses: ./.github/actions/build-and-run-wodin + - name: Test e2e - run: npm run test:e2e --prefix=app/static -- --shard=${{ matrix.shard }}/6 + run: npm run test:e2e --prefix=app/static -- --shard=${{ matrix.shard }}/6 lint: runs-on: ubuntu-latest