diff options
author | dan <dan.abramov@gmail.com> | 2024-04-01 22:58:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-01 22:58:31 -0700 |
commit | a45da17c48b34f692668592f298a9d4441ee1be9 (patch) | |
tree | 5635f189bc46e05454b7a4a88a705c672182f713 /.github | |
parent | 0ff7e71ee356c692580d1931044cc92c59f381cb (diff) | |
download | voidsky-a45da17c48b34f692668592f298a9d4441ee1be9.tar.zst |
Separate ESLint and Prettier (#3373)
* Disable legacy Prettier ESLint integration * Run Prettier separately * Add caching * Separate -some and -all * Reduce node inits
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9aa55ca07..22cc65735 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,6 +24,8 @@ jobs: attempt_delay: 2000 - name: Lint check run: yarn lint + - name: Prettier check + run: yarn prettier --check . - name: Check & compile i18n run: yarn intl:build - name: Type check |