chore(deps): update dependency node to v24 (#12632) #9096
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: 'Format Code' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_OPTIONS: "--max_old_space_size=4096" | |
| steps: | |
| - name: Check out code using Git | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| # Needs access to push to main | |
| token: ${{ secrets.FREDKBOT_GITHUB_TOKEN }} | |
| - name: Install Tools & Dependencies | |
| uses: ./.github/actions/install | |
| - name: Format code | |
| run: pnpm run format:ci | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 # v7.0.0 | |
| with: | |
| commit_message: '[ci] format' | |
| branch: ${{ github.head_ref }} | |
| commit_user_name: fredkbot | |
| commit_user_email: fred+astrobot@astro.build |