Skip to content

Commit e9d24e7

Browse files
authored
Merge pull request #1 from PrabhaniN/dev
Integrate Travis CI
2 parents 021ce85 + 758a076 commit e9d24e7

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.travis.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: node_js
2+
node_js:
3+
- 11.9.0
4+
5+
cache:
6+
npm: true
7+
directories:
8+
- node_modules
9+
10+
branches:
11+
only:
12+
- master
13+
14+
before_script:
15+
- npm ci
16+
17+
script:
18+
- npm run build
19+
20+
deploy:
21+
provider: pages
22+
skip-cleanup: true
23+
github-token: $GITHUB_TOKEN
24+
keep-history: true
25+
local-dir: dist
26+
on:
27+
branch: master

0 commit comments

Comments
 (0)