Add GitHub Action to run CI tests (#162)

This commit is contained in:
Dirk Klimpel 2021-08-18 09:18:09 +02:00 committed by GitHub
parent 361643c3da
commit 634341ea07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
.github/workflows/build-test.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: build-test
on:
push:
branches: ["master"]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run tests
run: yarn test