Added GitHub action.

This commit is contained in:
Daan Vanden Bosch 2020-09-29 17:21:41 +02:00 committed by GitHub
parent 922db80097
commit 8f41c12394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,30 @@
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: CultureHQ/actions-yarn@v1.0.1
with:
args: install
- uses: CultureHQ/actions-yarn@v1.0.1
with:
args: lint
- uses: CultureHQ/actions-yarn@v1.0.1
with:
args: test
- uses: CultureHQ/actions-yarn@v1.0.1
with:
args: build