diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..a49918f --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,15 @@ +name: Tests +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + steps: + -uses: actions/checkout@v2 + -uses: action/setup-node@v2 + with: + nod-version: 14 + -name: install deps + run: npm ci + -name: run tests + run: npm test