Skip to content

fix(callbacks): Validate callbacks exists #25

fix(callbacks): Validate callbacks exists

fix(callbacks): Validate callbacks exists #25

name: Verify manifest was updated
on: pull_request
jobs:
validate-manifest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Validate manifest was changed
run: |
set +e
git --no-pager diff origin/main --name-only --exit-code manifest.json
if [ $? -eq 0 ]; then
echo "Manifest file not updated"
exit 1
fi