We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 474c0f9 commit 93ee9ceCopy full SHA for 93ee9ce
.github/workflows/linkbrary.yml
@@ -3,10 +3,11 @@ name: Linkbrary CI
3
on:
4
push:
5
branches:
6
- - main # main 브랜치에 푸시될 때 실행
+ - main # main 브랜치에 푸시될 때 실행
7
+ - develop
8
pull_request:
9
- - develop # main 브랜치로의 PR이 생성될 때 실행
10
+ - develop # main 브랜치로의 PR이 생성될 때 실행
11
12
jobs:
13
lint-and-build:
@@ -19,7 +20,7 @@ jobs:
19
20
- name: Set up Node.js
21
uses: actions/setup-node@v3
22
with:
- node-version: '20.15.1' # 현재 사용 중인 Node.js 버전
23
+ node-version: "20.15.1" # 현재 사용 중인 Node.js 버전
24
25
- name: Install dependencies
26
run: npm install
0 commit comments