Skip to content

feat: 관리페이지 배너 섹션 수정 및 비밀번호 재전송 기능 구현 (#246) #250

feat: 관리페이지 배너 섹션 수정 및 비밀번호 재전송 기능 구현 (#246)

feat: 관리페이지 배너 섹션 수정 및 비밀번호 재전송 기능 구현 (#246) #250

Workflow file for this run

name: pnpm CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality-and-build:
runs-on: ubuntu-latest
strategy:
matrix:
command: ['lint', 'test', 'build']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install
- name: Run commands
run: pnpm ${{ matrix.command }}