feat(client): 부마위키, 식견 프로모션 페이지에 inline banner 추가 #687
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'] | |
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 }} |