Commit 4656788 1 parent 023d5fe commit 4656788 Copy full SHA for 4656788
File tree 4 files changed +34
-7
lines changed
4 files changed +34
-7
lines changed Original file line number Diff line number Diff line change
1
+ * - text
Original file line number Diff line number Diff line change
1
+ name : Testing CI
2
+
3
+ on : pull_request
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ${{ matrix.os }}
8
+
9
+ strategy :
10
+ matrix :
11
+ node :
12
+ - 12
13
+ - 14
14
+ os :
15
+ - ubuntu-latest
16
+ - windows-latest
17
+ - macos-latest
18
+
19
+ steps :
20
+ - uses : actions/checkout@v2
21
+ - name : Use Node.js ${{ matrix.node }}
22
+ uses : actions/setup-node@v1
23
+ with :
24
+ node-version : ${{ matrix.node }}
25
+ - uses : actions/cache@v2
26
+ with :
27
+ path : ~/.npm
28
+ key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
29
+ restore-keys : |
30
+ ${{ runner.os }}-node-
31
+ - run : npm ci
32
+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Concolor
2
2
3
- [ ![ TravisCI ] ( https://travis-ci.org /metarhia/concolor.svg?branch=master )] ( https://travis-ci.org /metarhia/concolor )
3
+ [ ![ CI Status ] ( https://github.com /metarhia/concolor/workflows/Testing%20CI/badge .svg )] ( https://github.com /metarhia/concolor/actions?query=workflow%3A%22Testing+CI%22+branch%3Amaster )
4
4
[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/6f4f133090d64f178d099f86521ec117 )] ( https://www.codacy.com/app/metarhia/concolor )
5
5
[ ![ NPM Version] ( https://badge.fury.io/js/concolor.svg )] ( https://badge.fury.io/js/concolor )
6
6
[ ![ NPM Downloads/Month] ( https://img.shields.io/npm/dm/concolor.svg )] ( https://www.npmjs.com/package/concolor )
You can’t perform that action at this time.
0 commit comments