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

Commit 1045389

Browse files
committed
add travis
1 parent 422df45 commit 1045389

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
3+
node_js:
4+
- stable
5+
6+
install:
7+
- npm install
8+
9+
script:
10+
- npm test

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# nextjs-redux-firebase-authentication
22

3-
[![Slack](https://slack-the-road-to-learn-react.wieruch.com/badge.svg)](https://slack-the-road-to-learn-react.wieruch.com/)
3+
[![Build Status](https://travis-ci.org/taming-the-state-in-react/nextjs-redux-firebase-authentication.svg?branch=master)](https://travis-ci.org/taming-the-state-in-react/nextjs-redux-firebase-authentication) [![Slack](https://slack-the-road-to-learn-react.wieruch.com/badge.svg)](https://slack-the-road-to-learn-react.wieruch.com/)
44

55
* Found in [Taming the State in React](https://roadtoreact.com/course-details?courseId=TAMING_THE_STATE)
66
* [Live](https://react-firebase-authentication.wieruch.com/)
@@ -23,7 +23,7 @@
2323

2424
## Installation
2525

26-
* `git clone git@github.com:rwieruch/nextjs-redux-firebase-authentication.git`
26+
* `git clone git@github.com:taming-the-state-in-react/nextjs-redux-firebase-authentication.git`
2727
* `cd nextjs-redux-firebase-authentication`
2828
* `npm install`
2929
* `npm run dev`

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "react-nextjs-firebase-authentication",
33
"version": "0.1.0",
4-
"private": true,
54
"dependencies": {
65
"firebase": "^4.3.1",
76
"next": "^3.2.2",
@@ -16,6 +15,7 @@
1615
"scripts": {
1716
"dev": "next",
1817
"build": "next build",
19-
"start": "next start"
18+
"start": "next start",
19+
"test": "echo \"No test specified\" && exit 0"
2020
}
2121
}

0 commit comments

Comments
 (0)