Skip to content

ci: PR 시 도커 이미지 빌드 테스트 수행 #1

ci: PR 시 도커 이미지 빌드 테스트 수행

ci: PR 시 도커 이미지 빌드 테스트 수행 #1

name: Lint and Unit Test
on:
push:
branches:
- "**"
jobs:
lint_and_unit_test:
name: Lint and Unit Test
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Install pnpm
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: true
# Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
# Run lint
- name: Run Lint
run: pnpm eslint .
# Run Unit tests
- name: Run Unit Tests
run: pnpm test