Skip to content

Commit

Permalink
Merge pull request #120 from ttaerrim/front-ci
Browse files Browse the repository at this point in the history
[Feat] 프론트엔드 ci 파일 추가
  • Loading branch information
ttaerrim authored Nov 21, 2023
2 parents a572dcd + 632a526 commit ca6f2c5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: FrontEnd CI Pipeline

on:
pull_request:
branches:
- '**'

jobs:
build-and-test:
if: contains(github.event.pull_request.labels.*.name, '🎨 Front-end')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js for Frontend
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: npm install

# - name: Run Frontend tests
# run: npm run test -w=frontend

- name: Build Frontend
run: npm run build -w=frontend

0 comments on commit ca6f2c5

Please sign in to comment.