2023-11-17 15:58:17 -08:00
|
|
|
name: autofix.ci # Must be named this for autofix.ci to work
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
2024-07-29 21:15:47 +02:00
|
|
|
- name: Setup Bun
|
|
|
|
uses: ./
|
2023-11-17 15:58:17 -08:00
|
|
|
- name: Install Dependencies
|
2024-07-29 21:15:47 +02:00
|
|
|
run: bun install
|
2023-11-17 15:58:17 -08:00
|
|
|
- name: Format
|
|
|
|
run: |
|
2024-07-29 21:15:47 +02:00
|
|
|
bun run format
|
|
|
|
bun run build
|
2023-11-17 15:58:17 -08:00
|
|
|
- name: Commit
|
|
|
|
uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
|