Add .github

This commit is contained in:
Cayman 2020-02-20 14:55:18 -06:00
parent cbaef47671
commit 033f1b5b0f
No known key found for this signature in database
GPG Key ID: 54B21AEC3C53E1F5
2 changed files with 19 additions and 0 deletions

1
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1 @@
custom: https://gitcoin.co/grants/79/lodestar-eth20-client

18
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: CI Tests
on: [pull_request, push]
jobs:
lint:
name: Quick tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Bootstrap
run: yarn
- name: Check types
run: yarn check-types
- name: Lint
run: yarn lint
- name: Tests
run: yarn test