Build(deps): bump the other group with 4 updates #1891
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
# This GitHub action checks for duplicate migration prefixes in the ./migrations folder, | |
# comparing the head branch with the base branch. | |
name: Check Migrations | |
on: | |
pull_request: | |
jobs: | |
check_migrations: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout all | |
uses: actions/checkout@v4 | |
- name: Check migrations | |
run: ./scripts/check_migration_versions.sh |