Skip to content

Commit c9d6576

Browse files
Use Node.js 14 in actions on Github
Tabris.js requires Node.js v14. On November 29, the default version of Node.js in Github VMs changed from v14 to v16. We need to explicitly define the Node.js version to override this default.
1 parent 2f61926 commit c9d6576

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/build-2.x-nightly-ios-app.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ jobs:
1818
build_type: [release, debug]
1919
steps:
2020

21+
- name: Setup Node.js
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: '14'
25+
2126
- name: Checkout
2227
uses: actions/checkout@v2
2328
with:

.github/workflows/build-3.x-nightly-ios-app.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ jobs:
1818
build_type: [release, debug]
1919
steps:
2020

21+
- name: Setup Node.js
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: '14'
25+
2126
- name: Checkout
2227
uses: actions/checkout@v2
2328
with:

.github/workflows/build-master-ios-app.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ jobs:
1818
build_type: [release, debug]
1919
steps:
2020

21+
- name: Setup Node.js
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: '14'
25+
2126
- name: Checkout
2227
uses: actions/checkout@v2
2328
with:

0 commit comments

Comments
 (0)