Skip to content

Commit 98e0da8

Browse files
Integration WorkFlow
1 parent 6ca4a1d commit 98e0da8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ jobs:
1515
strategy:
1616
matrix:
1717
node-version: [18.x, 20.x, 22.x]
18+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1819

1920
steps:
2021
- uses: actions/checkout@v4
2122
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
2324
with:
2425
node-version: ${{ matrix.node-version }}
2526
cache: 'npm'
26-
- name: "Installing Dependencies"
27-
run: npm i
28-
29-
- name: "Build command"
30-
run: npm run build
27+
- run: npm i
28+
- run: npm run build
29+
# this is new build

0 commit comments

Comments
 (0)