Initial commit
上级
Showing
.eslintignore
0 → 100644
.eslintrc.json
0 → 100644
.gitattributes
0 → 100644
.github/dependabot.yml
0 → 100644
.github/workflows/test.yml
0 → 100644
.gitignore
0 → 100644
.prettierignore
0 → 100644
.prettierrc.json
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
__tests__/main.test.ts
0 → 100644
action.yml
0 → 100644
dist/index.js
0 → 100644
此差异由.gitattributes 抑制。
dist/index.js.map
0 → 100644
此差异由.gitattributes 抑制。
dist/licenses.txt
0 → 100644
此差异由.gitattributes 抑制。
dist/sourcemap-register.js
0 → 100644
此差异由.gitattributes 抑制。
jest.config.js
0 → 100644
package-lock.json
0 → 100644
此差异已折叠。
package.json
0 → 100644
{ | ||
"name": "typescript-action", | ||
"version": "0.0.0", | ||
"private": true, | ||
"description": "TypeScript template action", | ||
"main": "lib/main.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"format": "prettier --write **/*.ts", | ||
"format-check": "prettier --check **/*.ts", | ||
"lint": "eslint src/**/*.ts", | ||
"package": "ncc build --source-map --license licenses.txt", | ||
"test": "jest", | ||
"all": "npm run build && npm run format && npm run lint && npm run package && npm test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/actions/typescript-action.git" | ||
}, | ||
"keywords": [ | ||
"actions", | ||
"node", | ||
"setup" | ||
], | ||
"author": "", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@actions/core": "^1.2.6" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^26.0.10", | ||
"@types/node": "^14.10.0", | ||
"@typescript-eslint/parser": "^3.10.1", | ||
"@vercel/ncc": "^0.23.0", | ||
"eslint": "^7.8.1", | ||
"eslint-plugin-github": "^4.1.1", | ||
"eslint-plugin-jest": "^23.20.0", | ||
"jest": "^24.9.0", | ||
"jest-circus": "^26.4.2", | ||
"js-yaml": "^3.14.0", | ||
"prettier": "2.1.1", | ||
"ts-jest": "^24.3.0", | ||
"typescript": "^4.0.2" | ||
} | ||
} |
src/main.ts
0 → 100644
src/wait.ts
0 → 100644
tsconfig.json
0 → 100644
想要评论请 注册 或 登录