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

github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-05-05 10:05:13 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-05-05 10:05:13 +0300
commit9d80318fa9c7d53546565be61716137dee23290f (patch)
tree53310eeebee88a9eb064a346212258bebf869629
parentb0ba159f5268f95fe81d0b512a7f597e254520dc (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 acddbf2..b78954f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node: [10, 12]
+ node: [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 ci