Skip to content

Commit

Permalink
Revert "comment out temporarily"
Browse files Browse the repository at this point in the history
This reverts commit 9abb9cd.
  • Loading branch information
gaearon committed Oct 10, 2018
1 parent c73497c commit 0af8199
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion scripts/release/build-commands/run-automated-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
const {logPromise, runYarnTask} = require('../utils');

module.exports = async ({cwd}) => {
// await logPromise(runYarnTask(cwd, 'lint', 'Lint failed'), 'Running ESLint');
await logPromise(runYarnTask(cwd, 'lint', 'Lint failed'), 'Running ESLint');
await logPromise(
runYarnTask(cwd, 'flow-ci', 'Flow failed'),
'Running Flow checks'
Expand Down
10 changes: 5 additions & 5 deletions scripts/release/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ const run = async () => {

await checkEnvironmentVariables(params);
await validateVersion(params);
// await checkUncommittedChanges(params);
// await checkNpmPermissions(params);
// await updateGit(params);
// await checkCircleCiStatus(params);
await checkUncommittedChanges(params);
await checkNpmPermissions(params);
await updateGit(params);
await checkCircleCiStatus(params);
await installYarnDependencies(params);
await checkPackageDependencies(params);
await updateYarnDependencies(params);
// await runAutomatedTests(params);
await runAutomatedTests(params);
// Also update NPM dependencies for private packages (e.g. react-native-renderer)
// Even though we don't publish these to NPM,
// mismatching dependencies can cause `yarn install` to install duplicate packages.
Expand Down

0 comments on commit 0af8199

Please sign in to comment.