You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The repo doesn't contain a lockfile file such as package-lock.json (when npm used) or yarn.lock (when yarn used), which enable reproducible-builds as the same versions can be used when rebuilding the app by using npm ci command which currently fail with error.
fix: include lockfile in the repo, and ensure app compilation work when npm ci or yarn install --frozen-lockfile is used to install deps (needed for reproducible deps installation)
The text was updated successfully, but these errors were encountered:
The repo doesn't contain a lockfile file such as
package-lock.json
(when npm used) oryarn.lock
(when yarn used), which enable reproducible-builds as the same versions can be used when rebuilding the app by usingnpm ci
command which currently fail with error.fix: include lockfile in the repo, and ensure app compilation work when
npm ci
oryarn install --frozen-lockfile
is used to install deps (needed for reproducible deps installation)The text was updated successfully, but these errors were encountered: