Skip to content

Commit 02f785f

Browse files
committed
add languagetool
1 parent f7a0fb3 commit 02f785f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/check.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Languagetool
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
main:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- name: Check
18+
uses: addnab/docker-run-action@v3
19+
with:
20+
image: hexlet/languagetool-cli:latest
21+
options: -v ${{ github.workspace }}/modules:/content
22+
run: node ./bin/run.js check /content/**/*.md

0 commit comments

Comments
 (0)