Skip to content

Commit

Permalink
feat: 타입 체크용 action 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
myoungjinGo-FE committed Nov 17, 2024
1 parent 0139103 commit 50300d1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/type_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: TypeScript Check

on:
push:
branches:
- develop
- feature/**

jobs:
type-check:
runs-on: ubuntu-latest

steps:
- name: Checkout source code # 레포지토리 체크아웃
uses: actions/checkout@v3

- name: Set up Node.js # Node.js 설정
uses: actions/setup-node@v3
with:
node-version: 22 # 프로젝트에 맞는 Node.js 버전을 설정

- name: Install dependencies # 의존성 설치
run: yarn install

- name: Run TypeScript check # 타입스크립트 체크
run: yarn tsc --noEmit

0 comments on commit 50300d1

Please sign in to comment.