[MDS-6129] project summary status: frontend #2836
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compare Common Redux folder | |
on: | |
pull_request: | |
paths: | |
- services/core-web/** | |
- services/minespace-web/** | |
jobs: | |
common-folder-compare: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: compare-folders | |
run: | | |
diff -r -C 5 services/core-web/common services/minespace-web/common | |
if [ $? != 0 ] | |
then | |
echo "'/services/core-web/common' does not match '/services/minespace-web/common'" | |
exit 1 | |
fi |