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) <skjnldsv@protonmail.com>2020-12-08 16:40:25 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-12-08 16:40:25 +0300
commitc2624fbb1aefca117bab3547f136bd24cc54a132 (patch)
tree69fd10d64e19f01e407cf443f75f7252f260a136
parent91fa0cb8e8458a4a0ee380fd8007bccd02e7b07c (diff)
Fix node version
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r--.github/workflows/lint.yml16
-rw-r--r--.github/workflows/node.yml8
2 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 8d74b98f..c41152e6 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -57,16 +57,16 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-version: [12.x]
- name: eslint node${{ matrix.node-versions }}
+ name: eslint node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-versions }}
+ - name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
- node-versions: ${{ matrix.node-versions }}
+ node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
@@ -79,16 +79,16 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-version: [12.x]
- name: stylelint node${{ matrix.node-versions }}
+ name: stylelint node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-versions }}
+ - name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
- node-versions: ${{ matrix.node-versions }}
+ node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
index d5c403df..a971a7e6 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -13,16 +13,16 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-version: [12.x]
- name: node${{ matrix.node-versions }}
+ name: node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-versions }}
+ - name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
- node-versions: ${{ matrix.node-versions }}
+ node-version: ${{ matrix.node-version }}
- name: Install dependencies & build
run: |