Merge pull request #1287 from watchdogpolska/pre-commit-ci-update-config #2441
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: Frontend | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build frontend | |
run: make wait_web regenerate_frontend | |
- name: Show git status | |
run: git status | |
- name: Require rebuild content | |
run: > | |
git diff-index --quiet HEAD -- feder/static/ package*.json || ( | |
echo "Pending changes in the front-end have been detected."; | |
echo "Use 'make regenerate_frontend' to regenerate front-end "; | |
echo "and commit changes. Following changes pending:"; | |
git diff; | |
exit 1; | |
) |