diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 9b00c6959038..d4129a7c32d4 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -28,6 +28,9 @@ // manually bumping "node", "vite", + // bumping breaks coverage + // https://github.com/vitest-dev/vitest/actions/runs/12121857184/job/33793728382?pr=6920 + "vue", // we patch these packages "@types/chai", "@sinonjs/fake-timers", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 913d501d38b2..bae9ce02fa3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,13 @@ jobs: - name: Typecheck run: pnpm run typecheck + - name: Diff LICENSE.md + run: | + if ! git diff --exit-code packages/vitest/LICENSE.md; then + echo "::error::LICENSE.md has changed. Please commit the updated LICENSE.md file after the build." + exit 1 + fi + # From https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions - name: Check workflow files run: | @@ -61,7 +68,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@4edd678ac3f81e2dc578756871e4d00c19191daf # v45.0.4 + uses: tj-actions/changed-files@bab30c2299617f6615ec02a68b9a40d10bd21366 # v45.0.5 with: files: | docs/** @@ -101,7 +108,7 @@ jobs: run: pnpm i - name: Install Playwright Dependencies - run: pnpm exec playwright install chromium --with-deps + run: pnpm exec playwright install chromium --with-deps --only-shell - name: Build run: pnpm run build @@ -150,8 +157,7 @@ jobs: run: pnpm i - name: Install Playwright Dependencies - if: needs.changed.outputs.should_skip != 'true' - run: pnpm exec playwright install ${{ matrix.browser[0] }} --with-deps + run: pnpm exec playwright install ${{ matrix.browser[0] }} --with-deps --only-shell - name: Build run: pnpm run build diff --git a/.gitignore b/.gitignore index a40e76edc2af..d0949feffdb5 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ test/**/__screenshots__/**/* test/browser/fixtures/update-snapshot/basic.test.ts test/cli/fixtures/browser-multiple/basic-* .vitest-reports +*.tsbuildinfo diff --git a/README.md b/README.md index 1779c5f589a5..e6431ffc6701 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@
+
+