Skip to content

Commit

Permalink
Merge pull request #4 from goodguyry/ci-setup
Browse files Browse the repository at this point in the history
CI Setup
  • Loading branch information
goodguyry authored Nov 28, 2019
2 parents 95057cd + 34ffdf9 commit f585db2
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 4 deletions.
60 changes: 60 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
docs/build/

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.pyc

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# Dependencies #
######################
bower_components
node_modules
vendor

# Application files #
######################
*.sass-cache
*.sublime-*
.project
.settings
.vagrant
.vscode

# OS generated files #
######################
._*
.DS_Store*
.Spotlight-V100
.Trashes
ehthumbs.db
ehthumbs.db
Thumbs.db

# Misc #
######################
_site
.idea
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
docs/
src/**/*.test.js
utils/events.js
.babelrc
.eslintrc
*.sublime-project
*.sublime-workspace
1 change: 0 additions & 1 deletion docs/build/css/global.411474ca17ade804f03e.min.css

This file was deleted.

2 changes: 0 additions & 2 deletions docs/build/js/global.8509de6c14ab4dd4c86b.bundle.min.js

This file was deleted.

This file was deleted.

17 changes: 17 additions & 0 deletions travis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
install:
- YARN_IGNORE_ENGINES=true yarn
script: build
deploy:
provider: pages
edge: true
github_token: $GITHUB_TOKEN
local_dir: docs
target_branch: master
on:
branch: master

0 comments on commit f585db2

Please sign in to comment.