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-11-14 09:25:11 +0300
committerdartcafe <github@dartcafe.de>2020-11-19 10:20:52 +0300
commit9c04f34961329772002dc61c1a19e02bb913612e (patch)
tree4599ab0f6495d877d0d4906cc21fb852a8998374 /.github
parent6b40ed41fecef73c5ad2914a2d5c721d2c28371b (diff)
add node 14 to workflows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml6
-rw-r--r--.github/workflows/nodejs.yml3
2 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 50090f12..779aa425 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -19,7 +19,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@master
+ uses: actions/checkout@v2
- name: Set up php
uses: shivammathur/setup-php@master
with:
@@ -35,7 +35,7 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-versions: [12.x, 14.x]
name: eslint node ${{ matrix.node-versions }}
steps:
@@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-versions: [12.x, 14.x]
name: stylelint node ${{ matrix.node-versions }}
steps:
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index a48182b2..62a0aa54 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
- node-version: [12.x]
+ node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v1
@@ -23,4 +23,3 @@ jobs:
- name: build
run: |
npm run build --if-present
-