Merge branch 'feature/added_github_action' of https://github.com/yutachaos/mo into yutachaos-feature/added_github_action

This commit is contained in:
Tyler Akins 2021-11-25 15:57:52 -06:00
commit dae1c66f8f
No known key found for this signature in database
GPG Key ID: 8F3B8C432F4393BD

13
.github/workflows/ci.yaml vendored Normal file
View File

@ -0,0 +1,13 @@
name: CI
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Npm install
run: npm run install-tests
- name: Execute test
run: npm run test