Skip to content

Commit e890d8f

Browse files
committed
add workflow
1 parent 50e8215 commit e890d8f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/check.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Docker
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 ./modules:/content
22+
run: node ./bin/check.js

0 commit comments

Comments
 (0)