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

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2020-02-02 11:51:15 +0300
committerGitHub <noreply@github.com>2020-02-02 11:51:15 +0300
commit7cb40be9bfd341d4b4cb3bb798aa3c805c9bfd06 (patch)
tree871ec0eee890c854f4a739240abaf6eaadd6e833 /.github
parent3888ea5996ac0325016452ee7edc9fc9406c737f (diff)
Fix node syntax
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/node.yml (renamed from .github/workflows/nodejs.yml)6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/node.yml
index df207ce3..2e959bc2 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/node.yml
@@ -17,15 +17,15 @@ jobs:
steps:
- uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: use node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build
run: |
npm ci
- npm run build --if-present
- - name: check webpack build
+ npm run build
+ - name: check changes
run: |
bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && git status && exit 1 )"
env: