Skip to content

Commit 8c9a987

Browse files
committed
✨ feat: 프로젝트 build CI 추가
1 parent ac35373 commit 8c9a987

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/build.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build action test
2+
run-name: {{ github. actor }} has been added new commit.
3+
4+
on:
5+
push:
6+
branches-ignore:
7+
- 'main'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
- name: set up Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '22'
19+
- name: Install dependencies
20+
working-directory: ./src
21+
run: npm ci
22+
- name: Build project
23+
working-directory: ./src
24+
run: npm run build
25+

0 commit comments

Comments
 (0)