chore: yarn workspace 모노레포 셋팅 #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: Typescript Compile | |
run: yarn client compile | |
- name: Lint Code | |
run: yarn lint |