chore(deps): update non-production-dependencies (major) #2437
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: 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; | |
) |