We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f71dc4 commit 7ad8df1Copy full SHA for 7ad8df1
.github/workflows/deploy-docs.yml
@@ -17,18 +17,22 @@ concurrency:
17
jobs:
18
Deploy-Deployment:
19
runs-on: ubuntu-latest
20
+ strategy:
21
+ matrix:
22
+ node-version: [20]
23
steps:
- - 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 }}
30
uses: actions/setup-node@v4
-
- - uses: pnpm/action-setup@v4
- - name: Enable corepack
- run: corepack enable
31
32
+ node-version: ${{ matrix.node-version }}
33
+ cache: pnpm
34
- name: Install dependencies
35
run: pnpm install
- shell: bash
36
37
- name: Install Vercel CLI
38
run: pnpm install --global vercel@latest
0 commit comments