aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: e152ab38d8ba86322d38e1d8fdaa2042c3306fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
on: [ push, pull_request ]

jobs:
  build:
    runs-on: ubuntu-latest
    name: Run tests
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version: '14.15.0'
      - run: npm install

      - name: Run tests
        run: npm test