Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Setup #1

Merged
merged 6 commits into from
Jun 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#---------------------------------#
# environment configuration #
#---------------------------------#

# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input

# environment variables
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"

# scripts that run after cloning repository
install:
- ps: Install-Product node $env:nodejs_version
- npm cache clean --force
- appveyor-retry npm install

build: off # Disable MSBuilds, not related to the regular build process

# to run your custom scripts instead of automatic tests
test_script:
- node --version && npm --version
- cmd: "npm test"

# to disable deployment
deploy: off

#---------------------------------#
# notifications #
#---------------------------------#

notifications:
- provider: Slack
incoming_webhook:
secure: PRDZ1nhG/cQrwMgCLXsWvTDJtYxv78GJrSlVYpMzpUploVWDzBlpMqmFr9WxZQkY/lxsqCSpGX4zgTYzlte1WMWnghqTIFE8u7svlXHa/tk=
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
max_length = 120
trim_trailing_whitespace = true
insert_final_newline = true

[*.{json, yml, html, hbs}]
indent_size = 2
Loading