File tree Expand file tree Collapse file tree 4 files changed +17
-25
lines changed Expand file tree Collapse file tree 4 files changed +17
-25
lines changed Original file line number Diff line number Diff line change @@ -28,24 +28,24 @@ jobs:
28
28
- name : Install dependencies
29
29
run : pnpm install
30
30
31
- - name : Install Playwright
32
- run : pnpm run test:setup:ci
33
-
34
31
- name : Lint
35
32
run : pnpm run lint
36
33
37
34
- name : Typecheck
38
35
run : pnpm run typecheck && pnpm run dev:typecheck
39
36
40
- - name : Test
41
- run : pnpm run test:coverage
42
-
43
37
- name : Build
44
38
run : pnpm run build
45
39
46
40
- name : Publint
47
41
run : pnpm run publint
48
42
43
+ - name : Install Playwright
44
+ run : pnpm run test:setup
45
+
46
+ - name : Test
47
+ run : pnpm run test:coverage
48
+
49
49
- name : Upload coverage to Codecov
50
50
if : ${{ github.event_name == 'pull_request' || github.ref == 'refs/heads/main' }}
51
51
uses : codecov/codecov-action@v5
Original file line number Diff line number Diff line change 30
30
- name : Install dependencies
31
31
run : pnpm install
32
32
33
+ - name : Build
34
+ run : pnpm run build
35
+
33
36
- name : Install Playwright
34
- run : pnpm run test:setup:ci
37
+ run : pnpm run test:setup
38
+
39
+ - name : Test
40
+ run : pnpm run test
35
41
36
42
- name : Extract release notes
37
43
run : pnpm releaselog --format=notes ${{ github.ref_name }} > RELEASE_NOTES.md
44
50
env :
45
51
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
52
47
- - name : Test
48
- run : pnpm run test
49
-
50
- - name : Build
51
- run : pnpm run build
52
-
53
53
- name : Get dist tag
54
54
id : tag
55
55
run : echo "tag=$(pnpm exec jiti scripts/dist-tag.ts '${{ github.ref_name }}')" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change @@ -538,17 +538,9 @@ onBeforeUnmount(() => {
538
538
}
539
539
540
540
html .dark .message {
541
- background-color : color-mix(
542
- in srgb ,
543
- var (--surface ) 72% ,
544
- var (--border ) 28%
545
- );
541
+ background-color : color-mix(in srgb , var (--surface ) 72% , var (--border ) 28% );
546
542
color : var (--heading );
547
- border : 1px solid color-mix(
548
- in srgb ,
549
- var (--border ) 45% ,
550
- transparent 55%
551
- );
543
+ border : 1px solid color-mix(in srgb , var (--border ) 45% , transparent 55% );
552
544
}
553
545
554
546
.message.open {
Original file line number Diff line number Diff line change 12
12
"dev" : " vite" ,
13
13
"build" : " tsdown" ,
14
14
"typecheck" : " tsc -p tsconfig.json && tsc -p tsconfig.vitest.json" ,
15
- "lint" : " eslint . --fix" ,
15
+ "lint" : " eslint ." ,
16
+ "lint:fix" : " eslint . --fix" ,
16
17
"format" : " prettier . --write" ,
17
18
"publint" : " publint" ,
18
19
"dev:build" : " vite build" ,
19
20
"dev:preview" : " vite preview" ,
20
21
"dev:typecheck" : " vue-tsc -p ./demo" ,
21
22
"test:setup" : " playwright install chromium" ,
22
- "test:setup:ci" : " playwright install --with-deps chromium" ,
23
23
"docs" : " jiti ./scripts/docs.ts" ,
24
24
"release" : " bumpp --execute \" pnpm run docs\" --all" ,
25
25
"test" : " vitest run" ,
You can’t perform that action at this time.
0 commit comments