-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When `backend` makes changes this script will make sure that the affected `typescript types` have been updated for the `frontend`. See: BEDS-90
- Loading branch information
Showing
2 changed files
with
49 additions
and
86 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Backend-Converted-Types-Check | ||
on: | ||
push: | ||
paths: | ||
- 'backend/**' | ||
- 'frontend/types/api/**' | ||
branches: | ||
- main | ||
- staging | ||
pull_request: | ||
paths: | ||
- 'backend/**' | ||
- 'frontend/types/api/**' | ||
branches: | ||
- '*' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: read | ||
checks: write | ||
|
||
jobs: | ||
build: | ||
name: converted-types-check | ||
runs-on: self-hosted | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: 'backend/go.mod' | ||
cache-dependency-path: 'backend/go.sum' | ||
- name: Check if all backend-types have been converted to frontend-types | ||
working-directory: backend | ||
run: | | ||
currHash=$(find ../frontend/types/api -type f -print0 | sort -z | xargs -0 sha1sum | sha256sum | head -c 64) | ||
make frontend-types | ||
newHash=$(find ../frontend/types/api -type f -print0 | sort -z | xargs -0 sha1sum | sha256sum | head -c 64) | ||
if [ "$currHash" != "$newHash" ]; then | ||
echo "frontend-types have changed, please commit the changes" | ||
exit 1 | ||
fi | ||
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