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 9046e71 commit a612169Copy full SHA for a612169
.github/workflows/preview-publish.yml
@@ -7,21 +7,34 @@ on:
7
jobs:
8
publish-preview:
9
runs-on: ubuntu-latest
10
+
11
permissions:
12
contents: write
13
issues: write
14
pull-requests: write
15
16
steps:
17
- uses: actions/checkout@v4
18
- - name: Set up Node.js
19
+ runs-on: ubuntu-latest
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
24
+ - name: Install pnpm
25
+ uses: pnpm/action-setup@v3
26
+ with:
27
+ version: 10
28
+ run_install: false
29
30
+ - name: Setup Node.js
31
uses: actions/setup-node@v4
32
with:
- node-version: 20
- registry-url: 'https://registry.npmjs.org/'
33
+ node-version: '22'
34
+ cache: 'pnpm'
35
36
- name: Install dependencies
- run: pnpm i
37
+ run: pnpm install
38
39
- name: Generate preview version
40
run: |
0 commit comments