Skip to content

Commit c9bede9

Browse files
authored
Add config file option (#2)
* Introduced config file option * added CLI tests * Added API tests * Updated README * Added GitHub Action * minor enhancements
1 parent a96bb26 commit c9bede9

File tree

10 files changed

+6645
-3100
lines changed

10 files changed

+6645
-3100
lines changed

.github/workflows/run-checks.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Run Checks
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Use Node.js 16
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: 16
23+
- run: npm ci
24+
- run: npm test
25+
env:
26+
CI: true

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ node_modules
33
npm-debug.log
44
.DS_Store
55
dist
6-
/build
6+
build
7+
coverage
78
tmp
89
.tmp
910
yarn.lock

0 commit comments

Comments
 (0)