File tree 3 files changed +53
-11
lines changed
3 files changed +53
-11
lines changed Original file line number Diff line number Diff line change
1
+ version : 2.1
2
+
3
+ orbs :
4
+ node : circleci/node@4.1
5
+
6
+ jobs :
7
+ build-and-test-16 :
8
+ docker :
9
+ - image : cimg/node:16.1
10
+ steps :
11
+ - checkout
12
+ - node/install-packages
13
+ - run :
14
+ name : build and test
15
+ command : npm run lint && npm run build && npm test
16
+ build-and-test-15 :
17
+ docker :
18
+ - image : cimg/node:15.14
19
+ steps :
20
+ - checkout
21
+ - node/install-packages
22
+ - run :
23
+ name : build and test
24
+ command : npm run lint && npm run build && npm test
25
+ build-and-test-12 :
26
+ docker :
27
+ - image : cimg/node:14.17
28
+ steps :
29
+ - checkout
30
+ - node/install-packages
31
+ - run :
32
+ name : build and test
33
+ command : npm run lint && npm run build && npm test
34
+ build-and-test-14 :
35
+ docker :
36
+ - image : cimg/node:12.22
37
+ steps :
38
+ - checkout
39
+ - node/install-packages
40
+ - run :
41
+ name : build and test
42
+ command : npm run lint && npm run build && npm test
43
+
44
+ workflows :
45
+ test :
46
+ jobs :
47
+ - build-and-test-16
48
+ - build-and-test-15
49
+ - build-and-test-14
50
+ - build-and-test-12
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
## Ansi to Html
2
-
3
- [ ![ ] ( https://travis-ci.org/rburns/ansi-to-html.svg?branch=master )] ( https://travis-ci.org/rburns/ansi-to-html/branches )
2
+ [ ![ rburns] ( https://circleci.com/gh/rburns/ansi-to-html.svg?style=svg )] ( https://circleci.com/gh/rburns/ansi-to-html )
4
3
[ ![ ] ( https://img.shields.io/npm/v/ansi-to-html.svg )] ( https://www.npmjs.com/package/ansi-to-html )
5
4
![ ] ( https://img.shields.io/npm/dm/ansi-to-html.svg )
6
5
@@ -100,8 +99,8 @@ npm run lint
100
99
npm run build
101
100
```
102
101
103
- - Builds the ` /src ` files by running ` babel ` .
104
- - Saves the built files in ` /lib ` output directory.
102
+ - Builds the ` /src ` files by running ` babel ` .
103
+ - Saves the built files in ` /lib ` output directory.
105
104
- Recommended to run ` babel ` in Watch mode - will re-build the project each time the files are changed.
106
105
``` bash
107
106
npm run build:watch
You can’t perform that action at this time.
0 commit comments