chore(*): use GitHub Actions for CI (#738)

This commit is contained in:
Nathan Bierema 2021-06-16 10:58:22 -04:00 committed by GitHub
parent 50653641a9
commit 81916f6cb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 8 deletions

19
.github/workflows/CI.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install --immutable
- run: yarn prettier:check
- run: yarn build:all
- run: yarn lint:all
- run: yarn test:all

View File

@ -1,8 +0,0 @@
language: node_js
node_js:
- 'stable'
script:
- yarn prettier:check
- yarn build:all
- yarn lint:all
- yarn test:all