-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from shimataro/development
release v1.1.0
- Loading branch information
Showing
20 changed files
with
661 additions
and
526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# http://editorconfig.org/ | ||
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties | ||
root = true | ||
|
||
|
||
# recommended settings; DO NOT CHANGE! | ||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
|
||
# common settings | ||
[*] | ||
indent_style = tab | ||
indent_size = 4 | ||
tab_width = 4 | ||
max_line_length = off | ||
|
||
quote_type = double | ||
curly_bracket_next_line = true | ||
spaces_around_operators = true | ||
spaces_around_brackets = none | ||
indent_brace_style = allman | ||
|
||
|
||
# JSON/YAML | ||
[*.{json,babelrc,code-workspace,yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
tab_width = 2 | ||
|
||
|
||
# markdown | ||
[*.md] | ||
indent_style = space |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# https://help.github.com/ja/articles/workflow-syntax-for-github-actions | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
name: Build | ||
jobs: | ||
build: | ||
name: Build on ${{ matrix.platform }} / Node.js v${{ matrix.nodejs }} | ||
runs-on: ${{ matrix.platform }} | ||
strategy: | ||
matrix: | ||
platform: | ||
- "Windows-latest" | ||
- "macOS-latest" | ||
- "Ubuntu-latest" | ||
nodejs: | ||
- 12 | ||
steps: | ||
- name: Turn off auto-crlf | ||
run: git config --global core.autocrlf false | ||
- name: Checkout source codes | ||
uses: actions/checkout@v1 | ||
- name: Install Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.nodejs }} | ||
- name: Build | ||
run: npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
name: 'Install SSH Key' | ||
description: 'Install SSH key to ~/.ssh' | ||
author: 'shimataro' | ||
name: "Install SSH Key" | ||
description: "Install SSH key to ~/.ssh" | ||
author: "shimataro" | ||
branding: | ||
icon: 'terminal' | ||
color: 'gray-dark' | ||
icon: "terminal" | ||
color: "gray-dark" | ||
inputs: | ||
private-key: | ||
description: 'private SSH key' | ||
description: "private SSH key" | ||
required: true | ||
public-key: | ||
description: 'public SSH key' | ||
description: "public SSH key" | ||
required: true | ||
name: | ||
description: 'SSH key file name (default: id_rsa)' | ||
default: 'id_rsa' | ||
description: "SSH key file name (default: id_rsa)" | ||
default: "id_rsa" | ||
runs: | ||
using: 'node12' | ||
main: 'lib/main.js' | ||
using: "node12" | ||
main: "lib/main.js" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.