Merge pull request #94 from jduimovich/private-repo-images #174
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: Checks | |
"on": | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
generated-file-freshness: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Install node dependencies | |
run: | | |
make install-deps | |
- name: Confirm file freshness | |
run: | | |
make ensure-fresh | |
script-formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Install shfmt | |
run: | | |
make install-shfmt | |
- name: Confirm script formatting | |
run: | | |
make ensure-formatted |