mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
Replace deprecated install command (#19968)
The `--frozen-lockfile` flag is not supported by Yarn v3. It has been replaced by the Yarn v3 equivalent, which is `--immutable`. Additionally, the `deps-install` script was deleted and this command was inlined in the CircleCI configuration. I don't think we need to maintain a separate script just for one command.
This commit is contained in:
parent
614904d362
commit
177ea83f20
@ -363,8 +363,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
- run:
|
- run:
|
||||||
name: Install deps
|
name: Install deps
|
||||||
command: |
|
command: yarn --immutable
|
||||||
.circleci/scripts/deps-install.sh
|
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: dependency-cache-v1-{{ checksum "yarn.lock" }}
|
key: dependency-cache-v1-{{ checksum "yarn.lock" }}
|
||||||
paths:
|
paths:
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Print commands and their arguments as they are executed.
|
|
||||||
set -x
|
|
||||||
# Exit immediately if a command exits with a non-zero status.
|
|
||||||
set -e
|
|
||||||
|
|
||||||
yarn install --frozen-lockfile
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user