about summary refs log tree commit diff stats
path: root/.github/workflows/test.yml
blob: 404ac8dd821a932a73be764b757ccc2bc3ed2350 (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