This repository was archived by the owner on Jun 1, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +51
-2
lines changed Expand file tree Collapse file tree 2 files changed +51
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Javascript Node CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-javascript/ for more details
4
+ #
5
+ version : 2.1
6
+
7
+ defaults : &defaults
8
+ working_directory : ~/repo
9
+ docker :
10
+ - image : circleci/node:8.15
11
+
12
+ commands :
13
+ install_js :
14
+ steps :
15
+ - restore_cache :
16
+ keys :
17
+ - v2-yarn-sha-{{ checksum "yarn.lock" }}
18
+ - v2-yarn-sha-
19
+ - run :
20
+ name : Install js dependencies
21
+ command : yarn
22
+ - save_cache :
23
+ key : v2-yarn-sha-{{ checksum "yarn.lock" }}
24
+ paths : node_modules
25
+
26
+ jobs :
27
+ test_unit :
28
+ << : *defaults
29
+ steps :
30
+ - checkout
31
+ - install_js
32
+ - run :
33
+ name : run the tests
34
+ command : yarn test
35
+ build :
36
+ << : *defaults
37
+ steps :
38
+ - checkout
39
+ - install_js
40
+ - run :
41
+ name : check if building works
42
+ command : yarn build
43
+
44
+ workflows :
45
+ version : 2
46
+ pipeline :
47
+ jobs :
48
+ - test_unit
49
+ - build
Original file line number Diff line number Diff line change 22
22
<br />
23
23
<p align =" center " >
24
24
<a href =" https://github.com/cybertec-postgresql/rjsf-material-ui " >
25
- <img src="rjsf-material-ui-logo.png" alt="Logo" width="120 " height="120">
25
+ <img src="rjsf-material-ui-logo.png" alt="Logo" width="140 " height="120">
26
26
</a >
27
27
28
28
<h3 align =" center " >rjsf-material-ui</h3 >
@@ -142,7 +142,7 @@ Project Link: [https://cybertec-postgresql.github.io/rjsf-material-ui](https://c
142
142
<!-- MARKDOWN LINKS & IMAGES -->
143
143
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
144
144
145
- [ build-shield ] : https://img.shields.io/badge /build-passing-brightgreen .svg?style=flat-square
145
+ [ build-shield ] : https://img.shields.io/circleci /build/github/cybertec-postgresql/rjsf-material-ui .svg?style=flat-square&token=a58b0890f96bff2b53eef0f4d9c9e5d16eec2200
146
146
[ build-url ] : #
147
147
[ contributors-shield ] : https://img.shields.io/badge/contributors-1-orange.svg?style=flat-square
148
148
[ contributors-url ] : https://github.com/cybertec-postgresql/rjsf-material-ui/graphs/contributors
You can’t perform that action at this time.
0 commit comments