File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : CI_Integration_Linux
2-
3- on :
4- push :
5- branches : [ "main" ]
6- pull_request :
7- branches : [ "main" ]
8-
9- jobs :
10- build :
11- runs-on : ubuntu-latest
12-
13- strategy :
14- matrix :
15- node-version : [18 .x]
16-
17- steps :
18- - uses : actions/checkout@v3
19-
20- - name : Configuring Git LF Settings
21- run : |
22- git config --global core.autocrlf false
23-
24- - name : Use Node.js ${{ matrix.node-version }}
25- uses : actions/setup-node@v3
26- with :
27- node-version : ${{ matrix.node-version }}
28-
29- - name : Build and Test
30- run : |
31- npm install
32- npm run build-and-lint
33- npm run test
34-
35- - name : Creating .vsix
36- run : |
37- npm run package
1+ name : CI_Integration_Linux
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ node-version : [22 .x]
16+
17+ steps :
18+ - uses : actions/checkout@v3
19+
20+ - name : Configuring Git LF Settings
21+ run : |
22+ git config --global core.autocrlf false
23+
24+ - name : Use Node.js ${{ matrix.node-version }}
25+ uses : actions/setup-node@v3
26+ with :
27+ node-version : ${{ matrix.node-version }}
28+
29+ - name : Build and Test
30+ run : |
31+ npm install
32+ npm run build-and-lint
33+ npm run test
34+
35+ - name : Creating .vsix
36+ run : |
37+ npm run package
Original file line number Diff line number Diff line change 1- name : CI_Integration_MacOS
2-
3- on :
4- push :
5- branches : [ "main" ]
6- pull_request :
7- branches : [ "main" ]
8-
9- jobs :
10- build :
11- runs-on : macos-latest
12-
13- strategy :
14- matrix :
15- node-version : [18 .x]
16-
17- steps :
18- - uses : actions/checkout@v3
19-
20- - name : Configuring Git LF Settings
21- run : |
22- git config --global core.autocrlf false
23-
24- - name : Use Node.js ${{ matrix.node-version }}
25- uses : actions/setup-node@v3
26- with :
27- node-version : ${{ matrix.node-version }}
28-
29- - name : Build and Test
30- run : |
31- npm install
32- npm run build-and-lint
33- npm run test
34-
35- - name : Creating .vsix
36- run : |
37- npm run package
1+ name : CI_Integration_MacOS
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ jobs :
10+ build :
11+ runs-on : macos-latest
12+
13+ strategy :
14+ matrix :
15+ node-version : [22 .x]
16+
17+ steps :
18+ - uses : actions/checkout@v3
19+
20+ - name : Configuring Git LF Settings
21+ run : |
22+ git config --global core.autocrlf false
23+
24+ - name : Use Node.js ${{ matrix.node-version }}
25+ uses : actions/setup-node@v3
26+ with :
27+ node-version : ${{ matrix.node-version }}
28+
29+ - name : Build and Test
30+ run : |
31+ npm install
32+ npm run build-and-lint
33+ npm run test
34+
35+ - name : Creating .vsix
36+ run : |
37+ npm run package
Original file line number Diff line number Diff line change 1- name : CI_Integration_Windows
2-
3- on :
4- push :
5- branches : [ "main" ]
6- pull_request :
7- branches : [ "main" ]
8-
9- jobs :
10- build :
11- runs-on : windows-latest
12-
13- strategy :
14- matrix :
15- node-version : [18 .x]
16-
17- steps :
18- - uses : actions/checkout@v3
19-
20- - name : Configuring Git LF Settings
21- run : |
22- git config --global core.autocrlf false
23-
24- - name : Use Node.js ${{ matrix.node-version }}
25- uses : actions/setup-node@v3
26- with :
27- node-version : ${{ matrix.node-version }}
28-
29- - name : Build and Test
30- run : |
31- npm install
32- npm run build-and-lint
33- npm run test
34-
35- - name : Creating .vsix
36- run : |
37- npm run package
1+ name : CI_Integration_Windows
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ jobs :
10+ build :
11+ runs-on : windows-latest
12+
13+ strategy :
14+ matrix :
15+ node-version : [22 .x]
16+
17+ steps :
18+ - uses : actions/checkout@v3
19+
20+ - name : Configuring Git LF Settings
21+ run : |
22+ git config --global core.autocrlf false
23+
24+ - name : Use Node.js ${{ matrix.node-version }}
25+ uses : actions/setup-node@v3
26+ with :
27+ node-version : ${{ matrix.node-version }}
28+
29+ - name : Build and Test
30+ run : |
31+ npm install
32+ npm run build-and-lint
33+ npm run test
34+
35+ - name : Creating .vsix
36+ run : |
37+ npm run package
You can’t perform that action at this time.
0 commit comments