added frontend build workflow

This commit is contained in:
Peter Papp
2021-05-17 10:01:42 +02:00
parent b16b8b87cc
commit 66fe92653c

35
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: Frontend Build
on:
push:
branches: [ oasis ]
pull_request:
branches: [ oasis ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- run: npm run prod
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Application Build