migrate docker builds to more cacheable yarn style build with nginx #1089
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: commit | |
# run lints even before someone submits a pr | |
on: | |
push: | |
branches: | |
- '**' # run on any branch | |
- '!main' | |
- '!development' | |
# cancel running job if another commit comes in | |
concurrency: | |
group: commit-${{ github.ref }}-1 | |
cancel-in-progress: true | |
jobs: | |
lint: | |
uses: ./.github/workflows/lint.yml |