Skip to content

Commit 5641535

Browse files
authored
Merge pull request #301 from eficode/fix/cd-pipeline
Set pipeline node version to 16
2 parents 5cb8068 + cf909d9 commit 5641535

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build-and-deploy-on-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
- name: Install Node
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: '14'
16-
15+
node-version: '16'
16+
1717
- name: Checkout merged code
1818
uses: actions/checkout@v2
1919

.github/workflows/build-and-test-on-pr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ jobs:
66
runs-on: ubuntu-latest
77
environment: dev
88
steps:
9+
- name: Install Node
10+
uses: actions/setup-node@v3
11+
with:
12+
node-version: '16'
13+
914
- name: Checkout merged code
1015
uses: actions/checkout@v2
1116

0 commit comments

Comments
 (0)