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:
|
2025-02-04 17:31:38 +00:00
|
|
|
- name: 📥 Checkout
|
2023-11-17 15:58:17 -08:00
|
|
|
uses: actions/checkout@v4
|
2025-02-04 17:31:38 +00:00
|
|
|
|
|
|
|
- name: 🛠️ Setup Node
|
2023-11-17 15:58:17 -08:00
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 20.x
|
2025-02-04 17:31:38 +00:00
|
|
|
|
|
|
|
- name: 📦 Install Dependencies
|
2023-11-17 15:58:17 -08:00
|
|
|
run: npm install
|
2025-02-04 17:31:38 +00:00
|
|
|
|
|
|
|
- name: 🧹 Format
|
2023-11-17 15:58:17 -08:00
|
|
|
run: |
|
|
|
|
npm run format
|
|
|
|
npm run build
|
2025-02-04 17:31:38 +00:00
|
|
|
|
|
|
|
- name: 💾 Commit
|
2023-11-17 15:58:17 -08:00
|
|
|
uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
|