Skip to content

Commit b34852b

Browse files
committed
add js for setup
1 parent 11b1b2c commit b34852b

File tree

7 files changed

+4708
-19
lines changed

7 files changed

+4708
-19
lines changed

.gitignore

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
node_modules/
2+
lib
3+
4+
# Rest of the file pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
lerna-debug.log*
12+
13+
# Diagnostic reports (https://nodejs.org/api/report.html)
14+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15+
16+
# Runtime data
17+
pids
18+
*.pid
19+
*.seed
20+
*.pid.lock
21+
22+
# Directory for instrumented libs generated by jscoverage/JSCover
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
coverage
27+
*.lcov
28+
29+
# nyc test coverage
30+
.nyc_output
31+
32+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33+
.grunt
34+
35+
# Bower dependency directory (https://bower.io/)
36+
bower_components
37+
38+
# node-waf configuration
39+
.lock-wscript
40+
41+
# Compiled binary addons (https://nodejs.org/api/addons.html)
42+
build/Release
43+
44+
# Dependency directories
45+
jspm_packages/
46+
47+
# TypeScript v1 declaration files
48+
typings/
49+
50+
# TypeScript cache
51+
*.tsbuildinfo
52+
53+
# Optional npm cache directory
54+
.npm
55+
56+
# Optional eslint cache
57+
.eslintcache
58+
59+
# Optional REPL history
60+
.node_repl_history
61+
62+
# Output of 'npm pack'
63+
*.tgz
64+
65+
# Yarn Integrity file
66+
.yarn-integrity
67+
68+
# dotenv environment variables file
69+
.env
70+
.env.test
71+
72+
# parcel-bundler cache (https://parceljs.org/)
73+
.cache
74+
75+
# next.js build output
76+
.next
77+
78+
# nuxt.js build output
79+
.nuxt
80+
81+
# vuepress build output
82+
.vuepress/dist
83+
84+
# Serverless directories
85+
.serverless/
86+
87+
# FuseBox cache
88+
.fusebox/
89+
90+
# DynamoDB Local files
91+
.dynamodb/

action.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,5 @@ inputs:
1313
description: "The softwart architecture (default: amd64)"
1414
default: "amd64"
1515
runs:
16-
using: "composite"
17-
steps:
18-
- shell: bash
19-
run: |
20-
version="${{ inputs.version }}"
21-
arch="${{ inputs.arch }}"
22-
DL_URL=https://github.com/$ACI_REPO/releases/download/$version/awesome-ci_${version}_${arch}
23-
wget $DL_URL -O "$(pwd)/awesome-ci"
24-
chmod +x $(pwd)/awesome-ci
25-
env:
26-
ACI_REPO: fullstack-devops/awesome-ci
27-
- shell: bash
28-
run: |
29-
# echo "{path}" >> $GITHUB_PATH
30-
# echo "$(pwd)/awesome-ci" >> $GITHUB_PATH
31-
echo "::add-path::$(pwd)/awesome-ci"
32-
- shell: bash
33-
run: |
34-
echo "Path: $PATH"
16+
using: 'node12'
17+
main: 'dist/index.js'

0 commit comments

Comments
 (0)