Skip to content

Commit

Permalink
Merge branch 'MARA-22' of https://github.com/DDD-Community/mara-web i…
Browse files Browse the repository at this point in the history
…nto MARA-22
  • Loading branch information
a-honey committed Jan 24, 2024
2 parents d064f76 + 40343a0 commit c858010
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/workflow-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Production-Build-CI

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout source code.
uses: actions/checkout@v2

# node 버전 환경 설정
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Build
run: yarn build

0 comments on commit c858010

Please sign in to comment.