Skip to content

Commit

Permalink
Aloha
Browse files Browse the repository at this point in the history
  • Loading branch information
sivan committed Mar 5, 2020
0 parents commit f542a6a
Show file tree
Hide file tree
Showing 15 changed files with 7,589 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# EditorConfig from https://github.com/sivan/dotfiles
root = true

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

[*.md]
indent_size = 4
trim_trailing_whitespace = false
30 changes: 30 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: deploy

on:
push:
branches:
- master

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 10
- name: NPM Install and Test
run: |
npm install
npm run test
npm run build
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: demo
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Editor generate files
.idea/
.settings/

# Dev dependencies and cache files
node_modules/
npm-debug.log

# Folder view configuration files
.DS_Store
Desktop.ini

# Thumbnail cache files
*~
._*
Thumbs.db

# Files that might appear on external disks
.Spotlight-V100
.Trashes

# Dist files
dist/
umd/
Loading

0 comments on commit f542a6a

Please sign in to comment.