Skip to content

Commit

Permalink
Test React integration using next dist-tag
Browse files Browse the repository at this point in the history
Instead of `canary`. React uses `next` to represent the next
minor release.
  • Loading branch information
acdlite committed Oct 22, 2019
1 parent ae3410c commit 17e619f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ commands:
- run:
name: Linting
command: yarn lint
yarn_react_canary:
yarn_react_integration:
steps:
- run:
name: Upgrade to React Canary
command: yarn upgrade react@canary react-dom@canary -W --dev # upgrade (vs add) will skip re-building Next.js, which doesn't bundle React internals (so this is OK!)
name: Upgrade to most recent release in React's Next channel
command: yarn upgrade react@next react-dom@next -W --dev # upgrade (vs add) will skip re-building Next.js, which doesn't bundle React internals (so this is OK!)
yarn_info:
steps:
- run:
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
executor: node
steps:
- *attach_workspace
- yarn_react_canary
- yarn_react_integration
- *persist_to_workspace
test:
parallelism: 3
Expand Down

0 comments on commit 17e619f

Please sign in to comment.