Skip to content

Commit 602334a

Browse files
authored
ci: Use Node 12 LTS (#123)
This should fix builds randomly failing with `Assertion failed: (!uv__is_closing(handle)), function uv_close, file ../deps/uv/src/unix/core.c, line 113.`
1 parent 7df4c70 commit 602334a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: 12
1519
- name: CocoaPods
1620
run: |
1721
bundle install
@@ -34,6 +38,10 @@ jobs:
3438
steps:
3539
- name: Checkout
3640
uses: actions/checkout@v2
41+
- name: Set up Node.js
42+
uses: actions/setup-node@v1
43+
with:
44+
node-version: 12
3745
- name: Install
3846
run: |
3947
yarn
@@ -59,6 +67,10 @@ jobs:
5967
steps:
6068
- name: Checkout
6169
uses: actions/checkout@v2
70+
- name: Set up Node.js
71+
uses: actions/setup-node@v1
72+
with:
73+
node-version: 12
6274
- name: Install
6375
run: scripts/install-test-template.sh ${{ matrix.template }}
6476
- name: Build
@@ -150,6 +162,10 @@ jobs:
150162
steps:
151163
- name: Checkout
152164
uses: actions/checkout@v2
165+
- name: Set up Node.js
166+
uses: actions/setup-node@v1
167+
with:
168+
node-version: 12
153169
- name: Install
154170
run: |
155171
yarn
@@ -171,6 +187,10 @@ jobs:
171187
steps:
172188
- name: Checkout
173189
uses: actions/checkout@v2
190+
- name: Set up Node.js
191+
uses: actions/setup-node@v1
192+
with:
193+
node-version: 12
174194
- name: Install
175195
run: scripts/install-test-template.sh ${{ matrix.template }}
176196
- name: Build

0 commit comments

Comments
 (0)