Enable basic GitHub Actions CI

This commit is contained in:
Frieder Bluemle
2020-07-09 20:38:54 -07:00
parent ad98bfa878
commit 18f1c0d760
2 changed files with 14 additions and 0 deletions

10
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,10 @@
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: yarn --no-lockfile
- run: yarn lint