시니또 안부전화 서비스 기능구현 #145
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: ESLint & Build Test | |
on: | |
pull_request: | |
branches: | |
- Master | |
- Develop | |
- Weekly | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install NodeJs & Pnpm package manager | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Lint Code | |
run: pnpm lint | |
- name: Build Test | |
run: pnpm run build |