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-12-08 16:44:45 +0300
committerGitHub <noreply@github.com>2020-12-08 16:44:45 +0300
commit4de48da971eba817053f0994c1fffab511bb4473 (patch)
tree69fd10d64e19f01e407cf443f75f7252f260a136 /.github/workflows/lint.yml
parent060c54e4ac33a705837e7a282786362cd66fadc1 (diff)
parentc2624fbb1aefca117bab3547f136bd24cc54a132 (diff)
Merge pull request #584 from nextcloud/backport/581/stable19v19.0.6
[stable19] Make sure we have a string to localecompare to
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