Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-02-03 10:32:10 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-02-03 11:42:23 +0300
commite639e11de32bab7fbafdf43dcd70f8750d70a29c (patch)
tree4905ec54241f74da4cee4a3948d3c35892a1f04e /.github
parent750181d28328cff8b983bedb7ff898e60aa164a1 (diff)
Move npm build to github actions
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/node.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
new file mode 100644
index 00000000000..6b65c34070b
--- /dev/null
+++ b/.github/workflows/node.yml
@@ -0,0 +1,33 @@
+name: Node
+
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable*
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [12.x]
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Use node ${{ matrix.node-version }}
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+ - name: Install dependencies & build
+ run: |
+ npm ci
+ npm run build --if-present
+ - name: Check webpack build changes
+ run: |
+ bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && git status && exit 1 )"
+ env:
+ CI: true