diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..e69de29 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e93a7a3..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: node_js - -dist: trusty - -node_js: - - '8' - -before_install: - - curl -L https://yarnpkg.com/install.sh | bash -s -- --version 1.3.2 - - export PATH="$HOME/.yarn/bin:$PATH" - - pyenv global 3.10 - -cache: - yarn: true - -install: - - yarn - -script: - - make test diff --git a/.yarnrc b/.yarnrc index b869187..5533f87 100644 --- a/.yarnrc +++ b/.yarnrc @@ -1,2 +1,3 @@ --add.no-lockfile true --install.no-lockfile true +--install.production false diff --git a/Makefile b/Makefile index 204558a..d65e0bc 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/README.md b/README.md index 1bc79e3..9eae9eb 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 - console.log(span)}>This has a ref + console.log(span)}>This has a ref ``` ## Build