From 8df6720c859efce4dd7e92d9e2a2411116c61408 Mon Sep 17 00:00:00 2001 From: linagee Date: Mon, 27 Dec 2021 08:11:05 -0700 Subject: [PATCH] Added languagetool to GitHub Actions --- .github/workflows/pr.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 3f3a94a8..7b1f72ae 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,8 +9,16 @@ jobs: - uses: actions/checkout@v2 with: submodules: true + - uses: reviewdog/action-languagetool@v1 + with: + github_token: ${{ secrets.github_token }} + # Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review]. + reporter: github-pr-review + # Change reporter level if you need. + level: info - uses: actions/setup-node@v2-beta with: node-version: 16 - run: yarn install - run: yarn run build +