Skip to content

Commit

Permalink
Env: 배포 전 모든 브랜치 별로 Lint 및 Test하도록 Ci.yml 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
KimKyuHoi committed Nov 18, 2024
1 parent 407dc6d commit 9c8c245
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Test
name: Test and Lint

on:
push:
branches:
- '**'
pull_request:
branches:
- main
- '**'
workflow_dispatch:

jobs:
Expand All @@ -21,6 +24,9 @@ jobs:
- name: Install Dependencies
run: pnpm install

- name: Run Lint
run: pnpm lint

- name: Run Test
run: pnpm run test
run: pnpm test

0 comments on commit 9c8c245

Please sign in to comment.