diff options
| author | 2026-01-16 15:41:18 +0800 | |
|---|---|---|
| committer | 2026-01-16 15:41:18 +0800 | |
| commit | beeb032bb4e92262a989ac968040300b93daac21 (patch) | |
| tree | 6f2c8a1b29649d8b918740a020f0259dafcc8e0b | |
| parent | 6beecb0dc8854ae2ed79da4a2be6e8bd895349e0 (diff) | |
| download | DropOut-beeb032bb4e92262a989ac968040300b93daac21.tar.gz DropOut-beeb032bb4e92262a989ac968040300b93daac21.zip | |
chore: update CI workflow to simplify formatting step
Modified the GitHub Actions workflow to change the formatting command from a check to a direct format execution, streamlining the process in the CI pipeline.
| -rw-r--r-- | .github/workflows/check.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1280ad7..ba8ce54 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -40,6 +40,6 @@ jobs: - run: pnpm lint working-directory: ui - - run: pnpm format --check + - run: pnpm format working-directory: ui |