Skip to content

Commit 4270b46

Browse files
committed
fix: updated node-pr.jobs
updated node-pr.jobs to fix CI issues Resolves: #368 Signed-off-by: Aswin A <[email protected]>
1 parent bcbe732 commit 4270b46

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/node-pr-jobs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
working-directory: ui
1515
steps:
1616
- uses: actions/checkout@v4
17-
- name: Use Node.js 12.x
17+
- name: Use Node.js 18.x
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 12.x
20+
node-version: 18.x
2121
- name: Install Dependencies
2222
run: npm ci
2323
- name: Build
@@ -48,17 +48,17 @@ jobs:
4848

4949
steps:
5050
- uses: actions/checkout@v4
51-
- name: Use Node.js 12.x
51+
- name: Use Node.js 18.x
5252
uses: actions/setup-node@v3
5353
with:
54-
node-version: 12.x
54+
node-version: 18.x
5555
- name: Install Dependencies
5656
run: npm ci
5757
- name: Code lint
5858
run: npm run lint
5959

6060
e2e-tests:
61-
runs-on: ubuntu-latest # or macos-latest, windows-latest
61+
runs-on: ubuntu-22.04 # or macos-latest, windows-latest
6262
defaults:
6363
run:
6464
working-directory: ui
@@ -68,7 +68,7 @@ jobs:
6868
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
6969
- uses: actions/setup-node@v3
7070
with:
71-
node-version: 12.x
71+
node-version: 18.x
7272
- uses: microsoft/[email protected]
7373
- name: Install dependencies
7474
run: npm ci

0 commit comments

Comments
 (0)