Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-demos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
set -e

pushd dynamic-demo-plugin
yarn install
yarn install --immutable
yarn run build
popd
2 changes: 1 addition & 1 deletion build-frontend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
set -e

pushd frontend
yarn install
yarn install --immutable
yarn run build
popd
14 changes: 0 additions & 14 deletions test-demos.sh

This file was deleted.

9 changes: 1 addition & 8 deletions test-frontend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,7 @@ set -euo pipefail
OPENSHIFT_CI=${OPENSHIFT_CI:=false}
ARTIFACT_DIR=${ARTIFACT_DIR:=/tmp/artifacts}

cd frontend

# Check for outdated yarn.lock file
if [[ -n "$(git status --porcelain -- yarn.lock)" ]]; then
echo "Outdated yarn.lock file, commit changes to fix!"
git --no-pager diff
exit 1
fi
pushd frontend

# Dynamic plugin SDK docs are generated as part of the build, check for changes
GIT_STATUS="$(git status --short --untracked-files -- packages/console-dynamic-plugin-sdk/docs)"
Expand Down
1 change: 0 additions & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ set -e

./test-backend.sh
./test-frontend.sh
./test-demos.sh