Merge remote-tracking branch 'origin/master' into feature-add-tests

This commit is contained in:
youxingzhi
2019-12-30 21:35:46 +08:00

15
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: Test
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: npm install, lint and test
run: |
npm install
npm run lint
npm run test:unit