[공통] size limit action을 통해 패키지 변화에 따른 size check를 진행합니다. #8
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
PrettierAndLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: npm i -g pnpm | |
- run: node -v && pnpm -v | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run prettier | |
- run: pnpm run lint | |
TestAndBuild: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: npm i -g pnpm | |
- run: node -v && pnpm -v | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run build |