observer-lazy-loading-package적용하기 #25
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: Test and Lint | |
on: | |
pull_request: | |
branches: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Pnpm package manager | |
run: | | |
npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Run Lint | |
run: pnpm lint --max-warnings 50 | |
- name: Run Test | |
run: pnpm test | |
- name: Run Build | |
run: pnpm build |