Bump cookie and express in /tests/examples/source/devfiles/nodejs/project-with-endpoint-on-loopback #529
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: check-generated-files | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-ui-static-files: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Generate static files for UI | |
run: make ui-static | |
- name: Copy embedded files to Go sources | |
run: make prebuild | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@eb6d385c0e52fb28e2f6b70e15c835cb3cbfff17 | |
id: verify-changed-files | |
- name: Some files have changed | |
if: steps.verify-changed-files.outputs.files_changed == 'true' | |
run: | | |
echo "::error Changed files: ${{ steps.verify-changed-files.outputs.changed_files }} -- Please regenerate with make ui-static / make prebuild" | |
exit 1 |