Skip to content

Commit

Permalink
ci: Use Node 12 LTS (#123)
Browse files Browse the repository at this point in the history
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.`
  • Loading branch information
tido64 authored Jun 17, 2020
1 parent 7df4c70 commit 602334a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: CocoaPods
run: |
bundle install
Expand All @@ -34,6 +38,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install
run: |
yarn
Expand All @@ -59,6 +67,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install
run: scripts/install-test-template.sh ${{ matrix.template }}
- name: Build
Expand Down Expand Up @@ -150,6 +162,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install
run: |
yarn
Expand All @@ -171,6 +187,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install
run: scripts/install-test-template.sh ${{ matrix.template }}
- name: Build
Expand Down

0 comments on commit 602334a

Please sign in to comment.