Skip to content
This repository was archived by the owner on May 10, 2021. It is now read-only.

Fix Node.js version in CI #91

Merged
merged 1 commit into from
Nov 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down