Skip to content

Commit 4f5a594

Browse files
authored
Merge branch 'main' into 12-11-feat_browser_support_playwright_persistent_context
2 parents 2b9c375 + 4b67fc2 commit 4f5a594

179 files changed

Lines changed: 2771 additions & 2174 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
attributes:
1313
label: Describe the bug
1414
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
15-
placeholder: Bug description
15+
placeholder: I am doing ... What I expect is ... What actually happening is ...
1616
validations:
1717
required: true
1818
- type: textarea
@@ -41,6 +41,7 @@ body:
4141
- npm
4242
- yarn
4343
- pnpm
44+
- bun
4445
validations:
4546
required: true
4647
- type: checkboxes

.github/ISSUE_TEMPLATE/docs.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: 📚 Documentation
2+
description: Suggest a change or new page to be added to vitest.dev
3+
labels: [documentation]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this issue!
9+
- type: checkboxes
10+
id: documentation_is
11+
attributes:
12+
label: Documentation is
13+
options:
14+
- label: Missing
15+
- label: Outdated
16+
- label: Confusing
17+
- label: Not sure?
18+
- type: textarea
19+
id: description
20+
attributes:
21+
label: Explain in Detail
22+
description: A clear and concise description of your suggestion. If you intend to submit a PR for this issue, tell us in the description. Thanks!
23+
placeholder: The description of ... page is not clear. I thought it meant ... but it wasn't.
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: suggestion
28+
attributes:
29+
label: Your Suggestion for Changes
30+
validations:
31+
required: true
32+
- type: input
33+
id: reproduction
34+
attributes:
35+
label: Reproduction
36+
description: If you have a reproduction, please provide a link via [vitest.new](https://vitest.new/) or a link to a repo that can reproduce the problem you ran into.
37+
placeholder: Reproduction URL

.github/actions/setup-playwright/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
run: echo "Failed to resolve package versions. See log above." && exit 1
3030

3131
- name: Cache Playwright v${{ steps.resolve-package-versions.outputs.PLAYWRIGHT_VERSION }}
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
id: playwright-cache
3434
with:
3535
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: Get changed files
6969
id: changed-files
70-
uses: tj-actions/changed-files@a284dc1814e3fd07f2e34267fc8f81227ed29fb8 # v45.0.9
70+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v47.0.1
7171
with:
7272
files: |
7373
docs/**
@@ -120,7 +120,7 @@ jobs:
120120
- name: Unit Test UI
121121
run: pnpm run -C packages/ui test:ui
122122

123-
- uses: actions/upload-artifact@v5
123+
- uses: actions/upload-artifact@v6
124124
if: ${{ !cancelled() }}
125125
with:
126126
name: playwright-report-${{ matrix.os }}-node-${{ matrix.node_version }}
@@ -240,7 +240,7 @@ jobs:
240240
- name: Test Browser (playwright)
241241
run: pnpm run test:browser:playwright
242242

243-
- uses: actions/upload-artifact@v5
243+
- uses: actions/upload-artifact@v6
244244
if: ${{ !cancelled() }}
245245
with:
246246
name: playwright-report-rolldown

.github/workflows/lock-closed-issues.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@ jobs:
1212
if: github.repository == 'vitest-dev/vitest'
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 # v5.0.1
15+
- uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6.0.0
1616
with:
1717
github-token: ${{ secrets.GITHUB_TOKEN }}
1818
issue-inactive-days: '14'
19-
# issue-comment: |
20-
# This issue has been locked since it has been closed for more than 14 days.
21-
#
22-
# If you have found a concrete bug or regression related to it, please open a new [bug report](https://github.com/vitejs/vite/issues/new/choose) with a reproduction against the latest Vite version. If you have any other comments you should join the chat at [Vite Land](https://chat.vitejs.dev) or create a new [discussion](https://github.com/vitejs/vite/discussions).
19+
pr-inactive-days: '14'
2320
issue-lock-reason: ''
24-
process-only: issues
21+
pr-lock-reason: ''
22+
process-only: issues,prs

docs/.vitepress/components.d.ts

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/.vitepress/components/Contributors.vue

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/.vitepress/components/FeaturesList.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<script setup>
2+
import ListItem from './ListItem.vue'
3+
</script>
4+
15
<template>
26
<ul
37
class="features-list"

0 commit comments

Comments
 (0)