Skip to content

refactor: api 호출 및 예외처리 service 메서드로 분리, 예외 ExceptionHandler 클래스로 처리 #18

refactor: api 호출 및 예외처리 service 메서드로 분리, 예외 ExceptionHandler 클래스로 처리

refactor: api 호출 및 예외처리 service 메서드로 분리, 예외 ExceptionHandler 클래스로 처리 #18

name: (get-p-client) Compile & Linting
on:
pull_request:
branches:
- develop
workflow_dispatch:
jobs:
compile_and_lint:
runs-on: ubuntu-latest
steps:
- name: Install NodeJS
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install Yarn Package Manager
run: npm install -g yarn
- name: Code Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build get-p-design system
run: yarn design build
- name: Typescript Compile
run: yarn client compile
- name: Lint Code
run: yarn client lint