enhance(frontend/backend): 예약된 노트 게시에 실패할 경우 사용자에게 알림 ([penginn-net/k… #76
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: Test (federation) | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
paths: | |
- packages/backend/** | |
- packages/cherrypick-js/** | |
- .github/workflows/test-federation.yml | |
pull_request: | |
paths: | |
- packages/backend/** | |
- packages/cherrypick-js/** | |
- .github/workflows/test-federation.yml | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.11.0] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Install FFmpeg | |
uses: FedericoCarboni/setup-ffmpeg@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Build CherryPick | |
run: | | |
corepack enable && corepack prepare | |
pnpm i --frozen-lockfile | |
pnpm build | |
- name: Setup | |
run: | | |
cd packages/backend/test-federation | |
bash ./setup.sh | |
sudo chmod 644 ./certificates/*.test.key | |
- name: Start servers | |
# https://github.com/docker/compose/issues/1294#issuecomment-374847206 | |
run: | | |
cd packages/backend/test-federation | |
docker compose up -d --scale tester=0 | |
- name: Test | |
run: | | |
cd packages/backend/test-federation | |
docker compose run --no-deps tester | |
- name: Stop servers | |
run: | | |
cd packages/backend/test-federation | |
docker compose down |