Skip to content

Commit f7d0326

Browse files
committed
Codeclimate と Travis CIを追加
1 parent 37479cb commit f7d0326

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.codeclimate.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: "2"
2+
checks:
3+
similar-code:
4+
enabled: false
5+
exclude_patterns:
6+
- "**/__tests__/"

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: node_js
2+
3+
node_js:
4+
- "10"
5+
6+
sudo: false
7+
8+
cache:
9+
directories:
10+
- $HOME/.cache/yarn
11+
- node_modules
12+
13+
branches:
14+
only:
15+
- master
16+
17+
notifications:
18+
email: true
19+
20+
install:
21+
- yarn
22+
23+
before_script:
24+
- yarn run build
25+
26+
script:
27+
- "yarn run test:compile"

0 commit comments

Comments
 (0)