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 f667ab5 commit 966474bCopy full SHA for 966474b
.github/workflows/publish.yml
@@ -12,19 +12,21 @@ jobs:
12
steps:
13
# Use github actions default to checkout corresponding branch
14
- uses: actions/checkout@v2
15
+ with:
16
+ fetch-depth: 0
17
18
# Use github actions to install node at least 14 version
- - name: Setup node
- uses: actions/setup-node@v2
19
+ - name: Set node version to 20
20
+ uses: actions/setup-node@v4
21
with:
- node-version: '14'
22
+ node-version: 20
23
registry-url: 'https://registry.npmjs.org'
24
25
# Use github actions to install pnpm at least 6 version
26
- name: Install pnpm
- uses: pnpm/action-setup@v2
27
+ uses: pnpm/action-setup@v4
28
- version: 6
29
+ version: 9
30
31
# Install dependencies
32
- name: Install dependencies
0 commit comments