Code formatting #43
This file contains hidden or 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: Code formatting | |
| on: | |
| schedule: | |
| - cron: '15 4 2 * *' # At 04:05 on day-of-month 2. | |
| workflow_dispatch: | |
| jobs: | |
| formatting: | |
| name: Code formatting | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - uses: actions/setup-node@v4.2.0 | |
| with: | |
| node-version: 20.5.0 | |
| - name: Run make clean | |
| run: make clean | |
| - name: Run make init-javascript | |
| run: make init-javascript | |
| - name: Run make prettier | |
| run: make prettier | |
| # Commit results back to repository | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| commit_message: Code formatting via `make prettier` | |
| branch: main | |
| commit_user_name: Code formatting workflow bot | |
| commit_user_email: stehtisch@engineeringkiosk.dev | |
| commit_author: Code formatting workflow bot <stehtisch@engineeringkiosk.dev> |