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

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-07-27 09:07:57 +0300
committerXhmikosR <xhmikosr@gmail.com>2021-09-01 15:01:18 +0300
commitac96a2cdabe2d25c2010fa4ca7755a3c6e8acdf3 (patch)
tree5d17f16847f918f0a99dbfb0aefdfe02030cc52e
parentfac9d8da3afd8f2b502fa1f2d922003b7e44ee3d (diff)
Remove Node.js 6.x from CI
Sass doesn't work on it
-rw-r--r--.github/workflows/test.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index fa84fb8..ae8e656 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node: [6, 8, 10, 12, 14]
+ node: [8, 10, 12, 14]
steps:
- name: Clone repository
@@ -26,12 +26,7 @@ jobs:
cache: npm
- name: Install npm dependencies
- run: npm install
- if: matrix.node == 6
-
- - name: Install npm dependencies
run: npm ci
- if: matrix.node != 6
- name: Run tests
run: npm test