File tree Expand file tree Collapse file tree 1 file changed +8
-17
lines changed Expand file tree Collapse file tree 1 file changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -16,28 +16,19 @@ jobs:
16
16
runs-on : ${{ matrix.os }}
17
17
18
18
steps :
19
- - name : Checkout Source Code
19
+ - name : Checkout
20
20
uses : actions/checkout@v2
21
21
22
- - name : Install Node.js
22
+ - name : Set up Node.js
23
23
uses : actions/setup-node@v1
24
24
with :
25
- node-version : 16.x
25
+ node-version : ' 18.x ' # Using Node.js 18.x to avoid the ReadableStream issue
26
26
27
- - name : Install Dependencies
27
+ - name : Install dependencies
28
28
run : npm install
29
29
30
- - name : Install VSCE
31
- run : npm install -g vsce
30
+ - name : Install vsce globally
31
+ run : npm install -g vsce # Installing vsce globally to avoid missing package errors
32
32
33
- - name : Build Extension
34
- run : npm run vscode:prepublish
35
-
36
- # - name: Run Tests
37
- # run: npm test
38
-
39
- - name : Package Extension
40
- run : npx vsce package
41
-
42
- # - name: Verify Extension
43
- # run: npx vscode-test
33
+ - name : Build and package extension
34
+ run : npm run vscode:prepublish # Running your prepublish script
You can’t perform that action at this time.
0 commit comments