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

github.com/twbs/grunt-bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-04-29 18:02:16 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-04-29 18:08:50 +0300
commit19007269791dab2f4e8ea3a4d1e0651d0452e9e8 (patch)
treee7aaa02a41006606fae621aea70f571eb61f2965
parentd6f914504867dfd27dc735a90e52844ceb2fbff7 (diff)
CI updates
* add Node.js 14 * remove no longer needed steps; the latest `actions/setup-node` prints this info by default
-rw-r--r--.github/workflows/test.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 25dae85..9c44379 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node: [6, 8, 10, 12]
+ node: [6, 8, 10, 12, 14]
steps:
- name: Clone repository
@@ -22,9 +22,6 @@ jobs:
with:
node-version: ${{ matrix.node }}
- - run: node --version
- - run: npm --version
-
- name: Install npm dependencies
run: npm install # switch to `npm ci` when Node.js 6.x is dropped