File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 58
58
- name : Checkout
59
59
uses : actions/checkout@v4
60
60
61
+ - name : Setup Node.js
62
+ uses : actions/setup-node@v4
63
+ with :
64
+ node-version : ' 22'
65
+
66
+ - name : Cache npm
67
+ uses : actions/cache@v4
68
+ with :
69
+ path : ~/.npm
70
+ key : ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
71
+ restore-keys : |
72
+ ${{ runner.os }}-npm-
73
+
61
74
- name : Download VSIX Artifact
62
75
uses : actions/download-artifact@v4
63
76
with :
77
90
- name : Checkout
78
91
uses : actions/checkout@v4
79
92
93
+
94
+ - name : Setup Node.js
95
+ uses : actions/setup-node@v4
96
+ with :
97
+ node-version : ' 22'
98
+
99
+ - name : Cache npm
100
+ uses : actions/cache@v4
101
+ with :
102
+ path : ~/.npm
103
+ key : ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
104
+ restore-keys : |
105
+ ${{ runner.os }}-npm-
106
+
80
107
- name : Download VSIX Artifact
81
108
uses : actions/download-artifact@v4
82
109
with :
You can’t perform that action at this time.
0 commit comments