diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2021-03-05 18:06:00 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 13:36:00 +0100 |
commit | afbae1c99da0b23fc1bb793cc34c6c8d3973d85c (patch) | |
tree | 591ada0af1c9c580f0b73c33f6364e54ea257c2d | |
parent | c1fe86b15c2566e7281a74e3a4b61775f4f120ea (diff) |
chore(ci): move fmt before lint (#9695)
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b38e3a47..d405017f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -189,14 +189,14 @@ jobs: cargo --version deno --version - - name: lint.js - if: matrix.kind == 'lint' - run: deno run --unstable --allow-write --allow-read --allow-run ./tools/lint.js - - name: test_format.js if: matrix.kind == 'lint' run: deno run --unstable --allow-write --allow-read --allow-run ./tools/format.js --check + - name: lint.js + if: matrix.kind == 'lint' + run: deno run --unstable --allow-write --allow-read --allow-run ./tools/lint.js + - name: Build release if: | matrix.kind == 'test_release' || |