about summary refs log tree commit diff
path: root/test/validator.sh
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-10-19 23:08:36 +0200
committerGitHub <noreply@github.com>2019-10-19 23:08:36 +0200
commit114ecb2e1c03255bed5efee77ba1d8a71c9944d5 (patch)
tree5dde674b39f3372ae0cbdaa6fce194aa2445b2dd /test/validator.sh
parentdb05ef2179b2c01c5af126bca697add39fc82a34 (diff)
downloadkronika-114ecb2e1c03255bed5efee77ba1d8a71c9944d5.tar.gz
kronika-114ecb2e1c03255bed5efee77ba1d8a71c9944d5.zip
Sprawdzarka wpisów
* Add article checker

* Fix config typo
Diffstat (limited to 'test/validator.sh')
-rwxr-xr-xtest/validator.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/validator.sh b/test/validator.sh
new file mode 100755
index 0000000..b7e738c
--- /dev/null
+++ b/test/validator.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+NEW_FILES=`git diff --name-only HEAD master | egrep 'wpisy/*'`
+
+for file in $NEW_FILES; do
+    echo "../$file" > path.in
+
+    node -r esm check.js < path.in
+done
\ No newline at end of file