diff options
-rw-r--r-- | .circleci/config.yml | 56 | ||||
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | test/check.js | 11 | ||||
-rw-r--r-- | test/package.json | 16 | ||||
-rwxr-xr-x | test/validator.sh | 9 |
5 files changed, 98 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..98791c8 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,56 @@ +version: 2 + +defaults: &defaults + working_directory: ~/repo/test + docker: + - image: circleci/node:12.7 + +jobs: + test: + <<: *defaults + steps: + - checkout: + path: ~/repo + + # Download and cache dependencies + - restore_cache: + keys: + - v1-dependencies-{{ checksum "package.json" }} + # fallback to using the latest cache if no exact match is found + - v1-dependencies- + + - run: npm install + + - save_cache: + paths: + - node_modules + key: v1-dependencies-{{ checksum "package.json" }} + + - run: + name: Test + command: npm test + + - persist_to_workspace: + root: ~/repo + paths: . + + deploy: + <<: *defaults + steps: + - attach_workspace: + at: ~/repo + - run: + name: Schedule site build + command: curl -X POST -d {} $BUILD_HOOK + +workflows: + version: 2 + test-deploy: + jobs: + - test + - deploy: + requires: + - test + filters: + branches: + only: master diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77038aa --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.DS_Store + +# testing +node_modules +package-lock.json +*.in diff --git a/test/check.js b/test/check.js new file mode 100644 index 0000000..5bae1f5 --- /dev/null +++ b/test/check.js @@ -0,0 +1,11 @@ +import readline from "readline"; +import { parsePost } from "kronikarz/dist/parsePost"; + +const rl = readline.createInterface({ + input: process.stdin, + output: process.stdout +}); + +rl.question("", filePath => { + parsePost(filePath); +}); diff --git a/test/package.json b/test/package.json new file mode 100644 index 0000000..f78dd9d --- /dev/null +++ b/test/package.json @@ -0,0 +1,16 @@ +{ + "name": "tester", + "version": "1.0.0", + "description": "Checks if articles are write in right way", + "main": "check.js", + "dependencies": { + "esm": "^3.2.25", + "kronikarz": "^1.0.0" + }, + "scripts": { + "test": "./validator.sh" + }, + "keywords": [], + "author": "Patryk Niedźwiedziński", + "license": "ISC" +} 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 |