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>2021-05-10 22:35:26 +0300
committerGitHub <noreply@github.com>2021-05-10 22:35:26 +0300
commit26c99b07eadcd01563c100fca896126bffff7c46 (patch)
tree7442c9ceab39370264496175c74ebf738b60e1a8
parenta69ff99a81130a3a33ed42c6b48366ec34ac9f22 (diff)
Update CI configXhmikosR-patch-1
-rw-r--r--.github/workflows/test.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 9c44379..b9b58bb 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,7 +1,9 @@
name: Tests
+
on: [push, pull_request]
+
env:
- CI: true
+ FORCE_COLOR: 2
jobs:
run:
@@ -11,19 +13,19 @@ jobs:
strategy:
fail-fast: false
matrix:
- node: [6, 8, 10, 12, 14]
+ node: [10, 12, 14, 16]
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Node.js
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
- run: npm install # switch to `npm ci` when Node.js 6.x is dropped
+ run: npm ci
- name: Run tests
run: npm test