Skip to content

Commit 8f9a68d

Browse files
authored
Merge pull request #70 from kimuraz/dev
docs: fix docs
2 parents 8b4a1f1 + 31513c5 commit 8f9a68d

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,23 @@ name: CI
22

33
on:
44
push:
5-
branches: [ "dev", "v1", "master" ]
5+
branches: ["dev", "master"]
66
pull_request:
7-
branches: [ "master", "dev" ]
7+
branches: ["master", "dev"]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212

1313
strategy:
1414
matrix:
15-
node-version: [16.x, 18.x]
15+
node-version: [18.x, 20.x]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Use Node.js ${{ matrix.node-version }}
1919
uses: actions/setup-node@v3
2020
with:
2121
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

docs/.vuepress/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineClientConfig } from '@vuepress/client';
1+
import { defineClientConfig } from 'vuepress/client';
22
import DemoUseDraggable from '../guide/composables/components/DemoUseDraggable.vue';
33
import DemoUseResizable from '../guide/composables/components/DemoUseResizable.vue';
44
import DemoUseDragAndResize from '../guide/composables/components/DemoUseDragAndResize.vue';

0 commit comments

Comments
 (0)