Skip to content

Commit

Permalink
chore: #1 build 자동화 workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
leeminhee119 committed Jul 1, 2024
1 parent b6b5761 commit d54b4ab
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Test

on:
push:
branches: -main
pull_request:
branches: -main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 6.10.0

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"

- name: Install Dependencies
run: pnpm install

- name: Build
run: pnpm build

0 comments on commit d54b4ab

Please sign in to comment.