Skip to content

Commit f1cc815

Browse files
committed
Merge branch 'main' into feat-bench-compare
2 parents 5d4a806 + 30f728b commit f1cc815

File tree

816 files changed

+12106
-26036
lines changed

Some content is hidden

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

816 files changed

+12106
-26036
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,6 @@ jobs:
3232
- name: Lint
3333
run: pnpm run lint
3434

35-
typecheck:
36-
runs-on: ubuntu-latest
37-
steps:
38-
- uses: actions/checkout@v4
39-
40-
- uses: ./.github/actions/setup-and-cache
41-
42-
- name: Install
43-
run: pnpm i
44-
45-
- name: Build
46-
run: pnpm run build
47-
48-
- name: Typecheck
49-
run: pnpm run typecheck
50-
5135
test:
5236
runs-on: ${{ matrix.os }}
5337

@@ -56,7 +40,7 @@ jobs:
5640
strategy:
5741
matrix:
5842
os: [ubuntu-latest]
59-
node_version: [18, 20]
43+
node_version: [18, 20, 22]
6044
include:
6145
- os: macos-14
6246
node_version: 20
@@ -85,11 +69,8 @@ jobs:
8569
- name: Test
8670
run: pnpm run test:ci
8771

88-
- name: Test No Threads
89-
run: pnpm run test:ci:no-threads
90-
91-
- name: Test Vm Threads
92-
run: pnpm run test:ci:vm-threads
72+
- name: Test Examples
73+
run: pnpm run test:examples
9374

9475
test-ui:
9576
runs-on: ubuntu-latest
@@ -147,8 +128,6 @@ jobs:
147128

148129
timeout-minutes: 30
149130

150-
env:
151-
BROWSER: ${{ matrix.browser[0] }}
152131
steps:
153132
- uses: actions/checkout@v4
154133

@@ -170,6 +149,8 @@ jobs:
170149

171150
- name: Test Browser (webdriverio)
172151
run: pnpm run test:browser:webdriverio
152+
env:
153+
BROWSER: ${{ matrix.browser[0] }}
173154

174155
- name: Test Browser (playwright)
175156
run: pnpm run test:browser:playwright
@@ -185,8 +166,6 @@ jobs:
185166

186167
timeout-minutes: 30
187168

188-
env:
189-
BROWSER: ${{ matrix.browser[0] }}
190169
steps:
191170
- uses: actions/checkout@v4
192171

@@ -208,6 +187,8 @@ jobs:
208187

209188
- name: Test Browser (webdriverio)
210189
run: pnpm run test:browser:webdriverio
190+
env:
191+
BROWSER: ${{ matrix.browser[0] }}
211192

212193
- name: Test Browser (playwright)
213194
run: pnpm run test:browser:playwright

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ docs/public/user-avatars
2727
docs/public/sponsors
2828
.eslintcache
2929
docs/.vitepress/cache/
30-
!test/cwd/**/.cache
30+
!test/cli/fixtures/dotted-files/**/.cache

docs/.vitepress/components.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ declare module 'vue' {
1515
NonProjectOption: typeof import('./components/NonProjectOption.vue')['default']
1616
RouterLink: typeof import('vue-router')['RouterLink']
1717
RouterView: typeof import('vue-router')['RouterView']
18+
Version: typeof import('./components/Version.vue')['default']
1819
}
1920
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script setup lang="ts">
2+
import { VPBadge } from 'vitepress/theme'
3+
</script>
4+
5+
<template>
6+
<VPBadge type="info"><slot/>+</VPBadge>
7+
</template>

0 commit comments

Comments
 (0)