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 09:31:04 +0300
committerdartcafe <github@dartcafe.de>2020-09-03 09:31:04 +0300
commitfa30cc5f307e06eda3f54f5be188761753d0e9c1 (patch)
tree45bfd5cca08df9235fadf324b7f5c92f73a4487f
parentc8031f8576245f3e00e72a879f34fb13940336b8 (diff)
fix workflow file
-rw-r--r--.github/workflows/lint.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index cbf985f0..325242f6 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -9,11 +9,14 @@ on:
jobs:
php-cs-fixer:
- name: php-cs check
runs-on: ubuntu-latest
+
strategy:
matrix:
php-version: [7.4]
+
+ name: php-cs check php ${{ matrix.php-version }}
+
steps:
- name: Checkout
uses: actions/checkout@master
@@ -52,13 +55,13 @@ jobs:
run: php -f nextcloud/occ app:check-code mail
node:
- name: eslint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
+ name: eslint node${{ matrix.node-versions }}
steps:
- uses: actions/checkout@v2
- name: Use node ${{ matrix.node-version }}
@@ -71,7 +74,6 @@ jobs:
run: npm run lint
stylelint:
- name: stylint
runs-on: ubuntu-latest
strategy: