From 54cbb265d50b792a9b28b28428bb7e98c6d5be0c Mon Sep 17 00:00:00 2001 From: ehmicky Date: Tue, 17 Nov 2020 20:21:42 +0100 Subject: [PATCH] Fix Node.js version in CI --- .github/workflows/workflow.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 84e841b..3cfba83 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -13,10 +13,12 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest] - node-version: [10.17.0, 14.x] + # We should test on 10.13.0 but don't due to a bug in Jest + # https://github.com/facebook/jest/issues/9453 + node-version: [10.15.0, 14.x] exclude: - os: macOS-latest - node-version: 10.17.0 + node-version: 10.15.0 fail-fast: false steps: - name: Git checkout