Unverified Commit 09da5e71 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #1348 from cheahjs/fix/format-actions-enforce

fix: enforce formatters on GitHub Actions
parents 74638bbd f34fe49b
...@@ -25,3 +25,5 @@ jobs: ...@@ -25,3 +25,5 @@ jobs:
pip install yapf pip install yapf
- name: Format backend - name: Format backend
run: bun run format:backend run: bun run format:backend
- name: Check for changes after format
run: git diff --exit-code
...@@ -18,5 +18,8 @@ jobs: ...@@ -18,5 +18,8 @@ jobs:
run: bun install run: bun install
- name: Format frontend - name: Format frontend
run: bun run format run: bun run format
- name: Check for changes after format
run: git diff --exit-code
- name: Build frontend - name: Build frontend
if: always()
run: bun run build run: bun run build
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment