From 66fe92653cfe594a934d08f69c2fcb205fcc6fe7 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Mon, 17 May 2021 10:01:42 +0200 Subject: [PATCH] added frontend build workflow --- .github/workflows/build.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..ca4d2a70 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 \ No newline at end of file