Skip to content

Commit c6e9a58

Browse files
committed
update
1 parent 46ec0e0 commit c6e9a58

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ jobs:
2727
uses: actions/setup-node@v4
2828
with:
2929
node-version: '18'
30-
cache: 'npm'
31-
cache-dependency-path: demo/package-lock.json
3230

33-
- name: Install dependencies
34-
run: |
35-
cd demo
36-
npm ci
31+
- name: Install pnpm
32+
run: |
33+
npm install -g pnpm@latest
34+
35+
- name: Install dependencies
36+
run: pnpm install --no-frozen-lockfile
3737

3838
- name: Build
3939
run: |
4040
cd demo
41-
npm run build
41+
pnpm run build
4242
4343
- name: Setup Pages
4444
uses: actions/configure-pages@v4

0 commit comments

Comments
 (0)