2020-07-21 08:05:11 -07:00

16 lines
346 B
YAML

name: "Tests"
on:
pull_request:
push:
branches: # array of glob patterns matching against refs/heads. Optional; defaults to all
- main # triggers on pushes that contain changes in main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: npm ci
- run: npm test