mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
f196c9feb8
* lavamoat - run build system in lavamoat * lavamoat/allow-scripts - add missing policy entry * update viz and lavvamoat * trim policy file * bump viz * prue policy override * regen policy file * Update package.json * Update package.json * Apply suggestions from code review Co-authored-by: kumavis <kumavis@users.noreply.github.com> * update policy, remove redundant patches * use yarn setup in CI Co-authored-by: kumavis <aaron@kumavis.me> Co-authored-by: kumavis <kumavis@users.noreply.github.com>
16 lines
394 B
Bash
Executable File
16 lines
394 B
Bash
Executable File
#!/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 setup-ci
|
|
|
|
# Move HAR file into directory with consistent name so that we can cache it
|
|
mkdir -p build-artifacts/yarn-install-har
|
|
har_files=(./*.har)
|
|
if [[ -f "${har_files[0]}" ]]
|
|
then
|
|
mv ./*.har build-artifacts/yarn-install-har/
|
|
fi |