Skip to content

Commit

Permalink
Merge pull request #150 from boostcampwm-2024/feature/github-action
Browse files Browse the repository at this point in the history
PR에 빌드 테스트를 진행하는 깃허브 액션 스크립트 추가
  • Loading branch information
SeoGeonhyuk authored Nov 27, 2024
2 parents 9163e5d + 50f9cbf commit 888298a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pr-build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: PR-BUILD-TEST

on:
pull_request:
branches:
- development
types:
- opened
- reopened
- synchronize
- ready_for_review

jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.12.3
node-version: 20
cache: true

- name: Install dependencies with pnpm
run: pnpm install

- name: Build the project
run: pnpm build

0 comments on commit 888298a

Please sign in to comment.