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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-09-03 11:14:01 +0300
committerdartcafe <github@dartcafe.de>2020-09-03 11:14:01 +0300
commit9d857c93d69d39ac46902552c5bc282801af537b (patch)
tree14d8de58d7850ac9fbdaef2e59df1d1cfa636c85 /.github
parent0ba8347995ed5f8485be3d1bd7b5c044d975b320 (diff)
fix
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 94e28927..50856af7 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -63,15 +63,15 @@ jobs:
strategy:
matrix:
- node-version: [12.x]
+ node-versions: [12.x]
- name: eslint node${{ matrix.node-versions }}
+ name: eslint node ${{ matrix.node-versions }}
steps:
- uses: actions/checkout@v2
- - name: Use node ${{ matrix.node-version }}
+ - name: Use node ${{ matrix.node-versions }}
uses: actions/setup-node@v1
with:
- node-version: ${{ matrix.node-version }}
+ node-version: ${{ matrix.node-versions }}
- name: Install dependencies
run: npm ci
- name: ESLint
@@ -91,7 +91,7 @@ jobs:
- name: Set up node ${{ matrix.node-versions }}
uses: actions/setup-node@v1
with:
- node-versions: ${{ matrix.node-versions }}
+ node-version: ${{ matrix.node-versions }}
- name: Install dependencies
run: npm ci