Skip to content

Commit

Permalink
replace travis-ci with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
karmeleon committed Apr 29, 2024
1 parent ecc326d commit 0113091
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 23 deletions.
Empty file added .github/workflows/test.yml
Empty file.
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
--add.no-lockfile true
--install.no-lockfile true
--install.production false
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ src/components/LemonReset/LemonReset.css: node_modules patch-meyer-reset.js
./patch-meyer-reset.js

node_modules: package.json
yarn
yarn install

.PHONY: clean
clean:
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# 🍋 Lemon Reset

[![npm](https://img.shields.io/npm/v/lemon-reset.svg)](https://yarn.pm/lemon-reset)
[![Build Status](https://travis-ci.org/Yelp/lemon-reset.svg?branch=master)](https://travis-ci.org/Yelp/lemon-reset)
[![gzip size](http://img.badgesize.io/https://unpkg.com/lemon-reset/dist/lemon-reset.js?compression=gzip)](https://unpkg.com/lemon-reset/dist/lemon-reset.js)
[![install size](https://packagephobia.now.sh/badge?p=lemon-reset)](https://packagephobia.now.sh/result?p=lemon-reset)

Expand Down Expand Up @@ -51,7 +50,7 @@ export default Container;
Pass in any props! If you need to [pass in a ref](https://reactjs.org/docs/refs-and-the-dom.html#adding-a-ref-to-a-dom-element), you'll need to pass it in as a tagRef:

```javascript
<Span tagRef={span => console.log(span)}>This has a ref</Span>
<Span tagRef={(span) => console.log(span)}>This has a ref</Span>
```

## Build
Expand Down

0 comments on commit 0113091

Please sign in to comment.