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:
Diffstat (limited to '.github/workflows/lint.yml')
-rw-r--r--.github/workflows/lint.yml16
1 files changed, 8 insertions, 8 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