We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent add604c commit a2eb9bbCopy full SHA for a2eb9bb
1 file changed
.github/workflows/publish-extension.yml
@@ -16,7 +16,24 @@ jobs:
16
- name: Setup Node.js
17
uses: actions/setup-node@v4
18
with:
19
- node-version: '18'
+ node-version: '22'
20
+
21
+ - name: Show Node/npm versions
22
+ run: node -v && npm -v
23
24
+ - name: Cache root npm
25
+ uses: actions/cache@v4
26
+ with:
27
+ path: ~/.npm
28
+ key: ${{ runner.os }}-npm-cache-${{ hashFiles('package-lock.json') }}
29
+ restore-keys: ${{ runner.os }}-npm-cache-
30
31
+ - name: Cache webview node_modules
32
33
34
+ path: webview-ui/node_modules
35
+ key: ${{ runner.os }}-webview-node-modules-${{ hashFiles('webview-ui/package-lock.json') }}
36
+ restore-keys: ${{ runner.os }}-webview-node-modules-
37
38
- name: Extract version from tag
39
run: |
0 commit comments