2023-02-24 15:52:43 +00:00
|
|
|
name: "Format Code"
|
2021-03-26 19:45:53 +00:00
|
|
|
|
|
|
|
on:
|
2023-03-01 14:02:35 +00:00
|
|
|
workflow_dispatch:
|
2021-03-26 19:45:53 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
format:
|
2023-03-14 13:57:56 +00:00
|
|
|
if: github.repository_owner == 'withastro'
|
2021-03-26 19:45:53 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-01 20:04:36 +00:00
|
|
|
env:
|
|
|
|
NODE_OPTIONS: "--max_old_space_size=4096"
|
2021-03-26 19:45:53 +00:00
|
|
|
steps:
|
2021-11-02 14:13:36 +00:00
|
|
|
- name: Check out code using Git
|
2022-03-09 16:12:12 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-03-26 19:45:53 +00:00
|
|
|
with:
|
|
|
|
ref: ${{ github.head_ref }}
|
2022-06-27 18:11:19 +00:00
|
|
|
# Needs access to push to main
|
|
|
|
token: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Setup PNPM
|
2023-02-24 15:52:43 +00:00
|
|
|
uses: pnpm/action-setup@v2
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16
|
2023-02-24 15:52:43 +00:00
|
|
|
cache: "pnpm"
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
2021-11-02 14:13:36 +00:00
|
|
|
- name: Format code
|
2022-06-06 16:47:28 +00:00
|
|
|
run: pnpm run format:ci
|
2021-03-26 19:45:53 +00:00
|
|
|
- name: Commit changes
|
|
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
|
|
with:
|
2023-02-24 15:52:43 +00:00
|
|
|
commit_message: "[ci] format"
|
2021-03-26 19:45:53 +00:00
|
|
|
branch: ${{ github.head_ref }}
|
2022-06-27 18:32:24 +00:00
|
|
|
commit_user_name: fredkbot
|
|
|
|
commit_user_email: fred+astrobot@astro.build
|