-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
2 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 |
---|---|---|
@@ -1,3 +1,45 @@ | ||
# Action TypeScript Template | ||
<p align="center"> | ||
<a href=""> | ||
<img width="140" src="https://avatars.githubusercontent.com/u/73879334?s=200&v=4" /> | ||
</a> | ||
</p> | ||
|
||
🚀 A typescript template for rapid development of GitHub actions. | ||
<h1 align="center">Action TypeScript Template</h1> | ||
<div align="center"> | ||
A typescript template for rapid development of GitHub actions. | ||
</div> | ||
|
||
 | ||
|
||
## 🚀 How to use? | ||
|
||
 | ||
|
||
## 📒 Catalog Introduction | ||
|
||
``` | ||
├── .github/workflows/ The CI for make sure it is packaged correctly | ||
├── dist Package the generated Aciton execution code | ||
├── src Component home directory | ||
│ └── main.ts Your code | ||
├── .eslintrc.js Eslint config | ||
├── .prettierrc.js Prettier config | ||
├── action.yml Action config | ||
└── tsconfig.json TypeScript config | ||
``` | ||
|
||
The rest of the documents can be consulted by yourself. | ||
|
||
## 🤖 Command introduction | ||
|
||
| Name | Desc | | ||
| -- | -- | | ||
| build | ts build | | ||
| format | prettier write | | ||
| lint | eslint check | | ||
| package | action build for release | | ||
| all | npm all | | ||
|
||
## MIT | ||
|
||
https://github.com/actions-cool/action-ts-template/blob/main/LICENSE |