mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 12:20:38 +01:00
* Revert "Bump scheduler version to 0.14.0"
This reverts commit 687e4fb6f7.
* Store results.json as CI build artifact
13 lines
375 B
Bash
Executable File
13 lines
375 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
yarn build --extract-errors
|
|
# Note: since we run the full build including extracting error codes,
|
|
# it is important that we *don't* reset the change to `scripts/error-codes/codes.json`.
|
|
# When production bundle tests run later, it needs to be available.
|
|
# See https://github.com/facebook/react/pull/11655.
|
|
|
|
# Do a sanity check on bundles
|
|
yarn lint-build
|