Skip to content

Commit 7ad8df1

Browse files
committed
ci: update
1 parent 0f71dc4 commit 7ad8df1

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,22 @@ concurrency:
1717
jobs:
1818
Deploy-Deployment:
1919
runs-on: ubuntu-latest
20+
strategy:
21+
matrix:
22+
node-version: [20]
2023
steps:
21-
- name: Install Node.js
24+
- uses: actions/checkout@v4
25+
- name: Install pnpm
26+
uses: pnpm/action-setup@v4
27+
with:
28+
version: 9
29+
- name: Use Node.js ${{ matrix.node-version }}
2230
uses: actions/setup-node@v4
23-
24-
- uses: pnpm/action-setup@v4
25-
26-
- name: Enable corepack
27-
run: corepack enable
28-
31+
with:
32+
node-version: ${{ matrix.node-version }}
33+
cache: pnpm
2934
- name: Install dependencies
3035
run: pnpm install
31-
shell: bash
3236

3337
- name: Install Vercel CLI
3438
run: pnpm install --global vercel@latest

0 commit comments

Comments
 (0)