Added alpha release build ci

This commit is contained in:
Christian Klemm 2019-10-15 22:43:36 +02:00
parent 0ce42e6185
commit 5f1246280c
No known key found for this signature in database
GPG Key ID: 57578469FC907C48
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
name: Build alpha release package
on: push
#on:
# push:
# branches:
# - 'release/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm i yarn --global
- name: Install Packages
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: E2E Test
run: yarn e2e