Skip to content

Commit

Permalink
0714
Browse files Browse the repository at this point in the history
  • Loading branch information
WanderedToLa committed Jul 14, 2024
1 parent e93edc6 commit cf917d9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/Frontend/actions-core.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
sidebar_position: 6
---

# @actions/toolkit

github action을 개발하기위한 패키지 `@actions/toolkit`의 내부구조

```
├── docs
│   ├── adrs
│   ├── assets
│   └── specs
├── packages
│   ├── artifact
│   ├── attest
│   ├── cache
│   ├── core
│   ├── exec
│   ├── github
│   ├── glob
│   ├── http-client
│   ├── io
│   └── tool-cache
├── res
└── scripts
```

- npm
- lerna
- jest
- typescript

모노레포관리 툴인 `lerna`로 패키지를 관리하기 때문에 `npm install`후에
`npm run bootstrap`으로 패키지들의 종속성 설치

## @actions/core

- 입출력 결과 및 로깅,변수관리

1. **input/outputs**

0 comments on commit cf917d9

Please sign in to comment.