Create main.yml

enable yarn test
This commit is contained in:
Wouter Groeneveld 2021-03-05 11:28:01 +01:00 committed by GitHub
parent 47acd5531b
commit fcb8a6d2b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run tests
run: yarn test