File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -2,25 +2,23 @@ name: CI
2
2
3
3
on :
4
4
push :
5
- branches : [ "dev", "v1", " master" ]
5
+ branches : ["dev", "master"]
6
6
pull_request :
7
- branches : [ "master", "dev" ]
7
+ branches : ["master", "dev"]
8
8
9
9
jobs :
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
13
13
strategy :
14
14
matrix :
15
- node-version : [16 .x, 18 .x]
15
+ node-version : [18 .x, 20 .x]
16
16
steps :
17
17
- uses : actions/checkout@v3
18
18
- name : Use Node.js ${{ matrix.node-version }}
19
19
uses : actions/setup-node@v3
20
20
with :
21
21
node-version : ${{ matrix.node-version }}
22
- cache : ' npm'
23
- - run : npm ci
24
- - run : npm run lint
25
- - run : npm run test:ci
26
- - run : npm run build
22
+ - run : pnpm install
23
+ - run : pnpm run test:ci
24
+ - run : pnpm run build
Original file line number Diff line number Diff line change 1
- import { defineClientConfig } from '@ vuepress/client' ;
1
+ import { defineClientConfig } from 'vuepress/client' ;
2
2
import DemoUseDraggable from '../guide/composables/components/DemoUseDraggable.vue' ;
3
3
import DemoUseResizable from '../guide/composables/components/DemoUseResizable.vue' ;
4
4
import DemoUseDragAndResize from '../guide/composables/components/DemoUseDragAndResize.vue' ;
You can’t perform that action at this time.
0 commit comments