feat: 프로필 삭제시 동기화 #24
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality: | |
name: Check quality | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
command: ['lint', 'test', 'build'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.12.0 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
cache-dependency-path: 'pnpm-lock.yaml' | |
node-version-file: '.nvmrc' | |
- run: pnpm install --frozen-lockfile | |
- name: Run commands | |
run: pnpm ${{ matrix.command }} |