From c42865b3d9462c847263c6c952e7d0dbdc873412 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Sat, 26 Feb 2022 14:01:15 +0000 Subject: [PATCH] chore(ci): merge misspell workflow in ci workflow --- .github/workflows/ci.yml | 5 +++++ .github/workflows/misspell.yml | 15 --------------- 2 files changed, 5 insertions(+), 15 deletions(-) delete mode 100644 .github/workflows/misspell.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b332506e..1ea7b3c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,11 @@ jobs: steps: - uses: actions/checkout@v2.4.0 + - uses: reviewdog/action-misspell@v1 + with: + locale: "US" + level: error + - name: Linting run: docker build --target lint . diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml deleted file mode 100644 index 197af513..00000000 --- a/.github/workflows/misspell.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Misspells -on: - pull_request: - branches: [master] - push: - branches: [master] -jobs: - misspell: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2.4.0 - - uses: reviewdog/action-misspell@v1 - with: - locale: "US" - level: error