mirror of
https://github.com/facebook/react-native.git
synced 2026-03-31 09:02:15 +00:00
Summary: GHA passes the version to the script with a `v` prefix. However, when we receive the version from NPM, the `v` prefix is not here. We can fix the script by dropping the `v` when it is passed to the function. bypass-github-export-checks ## Changelog: [Internal] - Fix verifyPackageOnNPM Pull Request resolved: https://github.com/facebook/react-native/pull/49944 Test Plan: GHA Reviewed By: cortinico, fabriziocucci Differential Revision: D70960414 Pulled By: cipolleschi fbshipit-source-id: 4234103ebe49cf715aea4a1473a8a60978f07a9f
31 lines
997 B
JavaScript
31 lines
997 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
const {run, sleep, log} = require('./utils.js');
|
|
const {verifyPublishedPackage} = require('./verifyPublishedPackage.js');
|
|
const REACT_NATIVE_NPM_PKG = 'react-native';
|
|
const MAX_RETRIES = 3 * 6; // 18 attempts. Waiting between attempt: 10 s. Total time: 3 mins.
|
|
/**
|
|
* Will verify that @latest, @next and the @<version> have been published.
|
|
*
|
|
* NOTE: This will infinitely query each step until successful, make sure the
|
|
* calling job has a timeout.
|
|
*/
|
|
module.exports.verifyReleaseOnNpm = async (
|
|
version,
|
|
latest = false,
|
|
retries = MAX_RETRIES,
|
|
) => {
|
|
const tag = version.includes('-rc.') ? 'next' : latest ? 'latest' : null;
|
|
if (version.startsWith('v')) {
|
|
version = version.slice(1);
|
|
}
|
|
await verifyPublishedPackage(REACT_NATIVE_NPM_PKG, version, tag, retries);
|
|
};
|