File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
steps :
15
15
- uses : actions/checkout@v4
16
16
17
- - name : ' setup node: 18 platform: ${{ runner.os }}'
17
+ - name : ' setup node: 20 platform: ${{ runner.os }}'
18
18
uses : actions/setup-node@v4
19
19
with :
20
- node-version : 18
20
+ node-version : 20
21
21
22
22
- name : npm install
23
23
run : |
Original file line number Diff line number Diff line change 10
10
runs-on : ${{ matrix.os }}
11
11
strategy :
12
12
matrix :
13
- node-version : [18 ]
13
+ node-version : [20 ]
14
14
os : [ubuntu-latest, windows-latest, macos-latest]
15
15
16
16
steps :
62
62
63
63
- name : npm test
64
64
env :
65
- BUILD_VERSION : ' 0.99.${{ github.event.number }}'
65
+ BUILD_VERSION : 0.99.${{ github.run_number }}
66
66
VSCODE_BUILD_VERBOSE : true
67
67
DISPLAY : ' :99.0'
68
68
shell : pwsh
72
72
- name : vsce package
73
73
if : runner.os == 'Linux'
74
74
env :
75
- BUILD_VERSION : ' 0.99.${{ github.event.number }}'
75
+ BUILD_VERSION : 0.99.${{ github.run_number }}
76
76
shell : pwsh
77
77
run : |
78
78
invoke-psake -properties @{ packageVersion = $env:BUILD_VERSION } -tasklist bump
Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
6
6
env :
7
- NODE_VERSION : ' 18.x '
7
+ NODE_VERSION : ' 20 '
8
8
9
9
jobs :
10
10
release :
Original file line number Diff line number Diff line change 16
16
name : " Release Prep"
17
17
runs-on : " ubuntu-latest"
18
18
env :
19
- NODE_VERSION : " 18 "
19
+ NODE_VERSION : " 20 "
20
20
21
21
steps :
22
22
- name : " Checkout"
Original file line number Diff line number Diff line change 9
9
- " main"
10
10
workflow_dispatch :
11
11
12
- env :
12
+ env :
13
13
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
14
14
15
15
jobs :
16
16
build :
17
17
runs-on : ${{ matrix.os }}
18
18
strategy :
19
19
matrix :
20
- node-version : [18 ]
20
+ node-version : [20 ]
21
21
os : [ubuntu-latest, windows-latest, macos-latest]
22
22
23
23
steps :
@@ -76,16 +76,16 @@ jobs:
76
76
npm run test:coverage
77
77
78
78
- name : Upload Coverage
79
- if : |
80
- runner.os == 'Linux' &&
79
+ if : |
80
+ runner.os == 'Linux' &&
81
81
env.CODECOV_TOKEN != ''
82
82
uses : codecov/codecov-action@v4
83
83
with :
84
84
token : ${{ secrets.CODECOV_TOKEN }}
85
85
files : ./coverage.xml
86
86
fail_ci_if_error : true
87
87
verbose : true
88
-
88
+
89
89
- name : vsce package
90
90
if : runner.os == 'Linux'
91
91
env :
You can’t perform that action at this time.
0 commit comments