Skip to content
This repository was archived by the owner on Jun 1, 2020. It is now read-only.

Commit ab2212d

Browse files
committed
Update README
2 parents 41e33e6 + fa56c8b commit ab2212d

File tree

2 files changed

+51
-2
lines changed

2 files changed

+51
-2
lines changed

.circleci/config.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<br />
2323
<p align="center">
2424
<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">
2626
</a>
2727

2828
<h3 align="center">rjsf-material-ui</h3>
@@ -142,7 +142,7 @@ Project Link: [https://cybertec-postgresql.github.io/rjsf-material-ui](https://c
142142
<!-- MARKDOWN LINKS & IMAGES -->
143143
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
144144

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
146146
[build-url]: #
147147
[contributors-shield]: https://img.shields.io/badge/contributors-1-orange.svg?style=flat-square
148148
[contributors-url]: https://github.com/cybertec-postgresql/rjsf-material-ui/graphs/contributors

0 commit comments

Comments
 (0)