Skip to content

Commit 9bcd826

Browse files
authored
feat(cicd): updates GitHub actions node version to 14 (ng-select#2085)
1. Angular 14 does not support Node 12 or below. This commit updates Github actions node version to Node 14
1 parent 865d3f6 commit 9bcd826

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node
1818
uses: actions/setup-node@v1
1919
with:
20-
node-version: '12.x'
20+
node-version: '14.x'
2121

2222
- name: Install dependencies
2323
run: yarn install

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node
1818
uses: actions/setup-node@v1
1919
with:
20-
node-version: '12.x'
20+
node-version: '14.x'
2121

2222
- name: Install dependencies
2323
run: npm install

0 commit comments

Comments
 (0)