As of right now, the GitHub actions continue to run even if a newer commit is pushed to the repository on that branch. We should add the concurrency statement to our GitHub actions.
# Cancel runs happening simultaneously on the same branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true