We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23ddccd commit f3bd230Copy full SHA for f3bd230
.travis.yml
@@ -0,0 +1,17 @@
1
+language: node_js
2
+node_js:
3
+ - "stable"
4
+cache:
5
+ directories:
6
+ - node_modules
7
+script:
8
+ - npm test
9
+ - npm run build
10
+deploy:
11
+ provider: pages
12
+ skip_cleanup: true
13
+ github_token: $github_token
14
+ local_dir: dist
15
+ keep-history: true
16
+ on:
17
+ branch: master
package.json
@@ -3,9 +3,11 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
+ "homepage": "https://fac-13.github.io/LG-Game/",
"scripts": {
"start": "parcel index.html",
- "test": "jest --watch",
+ "test": "jest",
+ "test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "parcel build index.html"
},
0 commit comments