about summary refs log tree commit diff stats
path: root/.github/workflows/test.yml
blob: f31a693f85db1902a3660b229c970eb6f4fab592 (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: "16"
      - run: npm install
      - run: npm test