Skip to content

Commit 5f1600e

Browse files
author
Christopher Dierkens
committed
update badges and rename action to CI
1 parent 7cead81 commit 5f1600e

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Main
2+
name: CI
33

44
on:
55
push:

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
[![Downloads][downloads_img]][npm_site]
44
[![Bundle Size][bundle_img]](#bundle-size)
5-
[![Travis Status][trav_img]][trav_site]
6-
[![AppVeyor Status][appveyor_img]][appveyor_site]
5+
[![GH Actions Status][actions_img]][actions_site]
76
[![Coverage Status][cov_img]][cov_site]
87
[![npm version][npm_img]][npm_site]
98
[![Maintenance Status][maintenance_img]](#maintenance-status)
@@ -15,7 +14,7 @@ This is a fork of the brilliant
1514
[fast-deep-equal](https://github.com/epoberezkin/fast-deep-equal) with some
1615
extra handling for React.
1716

18-
![benchmark chart](https://raw.githubusercontent.com/FormidableLabs/react-fast-compare/master/assets/benchmarking.png "benchmarking chart")
17+
![benchmark chart](https://raw.githubusercontent.com/FormidableLabs/react-fast-compare/master/assets/benchmarking.png 'benchmarking chart')
1918

2019
(Check out the [benchmarking details](#benchmarking-this-library).)
2120

@@ -39,10 +38,10 @@ $ npm install react-fast-compare
3938
## Usage
4039

4140
```jsx
42-
const isEqual = require("react-fast-compare");
41+
const isEqual = require('react-fast-compare');
4342

4443
// general usage
45-
console.log(isEqual({ foo: "bar" }, { foo: "bar" })); // true
44+
console.log(isEqual({ foo: 'bar' }, { foo: 'bar' })); // true
4645

4746
// React.memo
4847
// only re-render ExpensiveComponent when the props have deeply changed
@@ -153,8 +152,8 @@ Please see our [contributions guide](./CONTRIBUTING.md).
153152

154153
**Active:** Formidable is actively working on this project, and we expect to continue for work for the foreseeable future. Bug reports, feature requests and pull requests are welcome.
155154

156-
[trav_img]: https://api.travis-ci.com/FormidableLabs/react-fast-compare.svg
157-
[trav_site]: https://travis-ci.com/FormidableLabs/react-fast-compare
155+
[actions_img]: https://github.com/FormidableLabs/react-fast-compare/actions/workflows/main.yml/badge.svg
156+
[actions_site]: https://github.com/formidablelabs/react-fast-compare/actions/workflows/main.yml
158157
[cov_img]: https://codecov.io/gh/FormidableLabs/react-fast-compare/branch/master/graph/badge.svg
159158
[cov_site]: https://codecov.io/gh/FormidableLabs/react-fast-compare
160159
[npm_img]: https://badge.fury.io/js/react-fast-compare.svg

0 commit comments

Comments
 (0)