Skip to content

Commit

Permalink
Merge pull request #1 from kentaro-m/add-tests
Browse files Browse the repository at this point in the history
Add unit tests
  • Loading branch information
kentaro-m authored Oct 5, 2019
2 parents dc20f19 + 58caa2d commit 04abb39
Show file tree
Hide file tree
Showing 14 changed files with 6,265 additions and 234 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Test'

on: push

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: setup node 12.x
uses: actions/setup-node@v1
with:
node-version: '12.x'

- name: install
run: npm install

- name: build
run: npm run build

- name: test
run: npm test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
lib/
lib/
coverage/
Loading

0 comments on commit 04abb39

Please sign in to comment.