We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca4a1d commit 98e0da8Copy full SHA for 98e0da8
.github/workflows/integration.yml
@@ -15,16 +15,15 @@ jobs:
15
strategy:
16
matrix:
17
node-version: [18.x, 20.x, 22.x]
18
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19
20
steps:
21
- uses: actions/checkout@v4
22
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
23
+ uses: actions/setup-node@v4
24
with:
25
node-version: ${{ matrix.node-version }}
26
cache: 'npm'
- - name: "Installing Dependencies"
27
- run: npm i
28
-
29
- - name: "Build command"
30
- run: npm run build
+ - run: npm i
+ - run: npm run build
+# this is new build
0 commit comments