Skip to content

Commit 151c558

Browse files
committed
Updating node version
1 parent 54c03d9 commit 151c558

3 files changed

Lines changed: 111 additions & 111 deletions

File tree

.github/workflows/CI_linux.yml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
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

.github/workflows/CI_mac.yml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
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

.github/workflows/CI_windows.yml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
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

0 commit comments

Comments
 (0)