Skip to content

Commit

Permalink
Upgrade CI build to node 12
Browse files Browse the repository at this point in the history
Summary:
D24156745 (8ee24da) removed the `flatMap` polyfill in the jest setup for metro. However, there are some tests that make use of `flatMap` and, therefore, are now failing.

Upgrade the `CI` build to use node 12.

Reviewed By: cpojer

Differential Revision: D24622384

fbshipit-source-id: e0b778d48a048db688271b1b6ba7c1bbe2495c7a
  • Loading branch information
Micha Reiser authored and facebook-github-bot committed Oct 29, 2020
1 parent 97852c1 commit 31a4165
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions circle.yml
Expand Up @@ -36,16 +36,16 @@ version: 2.1
jobs:
run-js-checks:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- yarn_install
- yarn_run:
command: test-ci

test-node-10:
test-node-12:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- yarn_install
Expand All @@ -54,7 +54,7 @@ jobs:

publish-to-npm:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- yarn_install
Expand All @@ -68,7 +68,7 @@ workflows:
build-and-deploy:
jobs:
- run-js-checks
- test-node-10
- test-node-12
- publish-to-npm:
filters:
branches:
Expand Down

0 comments on commit 31a4165

Please sign in to comment.