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

github.com/twbs/bootstrap-npm-starter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-12-23 22:51:48 +0300
committerMark Otto <otto@github.com>2021-01-08 07:03:23 +0300
commit6feee6ce1117bc340e89663e43968feaeb8b3df4 (patch)
tree4fd905704a549cf8e8c692b51f7125bb92f337b1
parent4c8e7bb4e464ad65a83921ad09d3e9413970c67a (diff)
Update ci.yml
* run it on pushes too * add `FORCE_COLOR: 2` * update to `actions/setup-node@v2`
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 50b50fb..d221400 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,9 +1,10 @@
name: CI
-on: [pull_request]
+on: [push, pull_request]
env:
CI: true
+ FORCE_COLOR: 2
jobs:
test:
@@ -19,8 +20,8 @@ jobs:
- name: Clone repository
uses: actions/checkout@v2
- - name: Set Node.js version
- uses: actions/setup-node@v1
+ - name: Set up Node.js
+ uses: actions/setup-node@v2
with:
node-version: "${{ matrix.node }}"