about summary refs log tree commit diff stats
path: root/.github/workflows/test.yml
blob: 4b4b43aae016ac983cce0506cff9f1a35111c1f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: test
on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version: '14'
      - run: npm install
      - run: npm test