fix(backend): Mastodon 사용자에게 대화를 보낼 때 [#objectobject] 태그가 추가될 수 있음 #34
Workflow file for this run
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: API report (cherrypick.js) | |
on: | |
push: | |
paths: | |
- packages/cherrypick-js/** | |
pull_request: | |
paths: | |
- packages/cherrypick-js/** | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- run: corepack enable | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Build | |
run: pnpm --filter cherrypick-js build | |
- name: Check files | |
run: ls packages/cherrypick-js/built | |
- name: API report | |
run: pnpm --filter cherrypick-js api-prod | |
- name: Show report | |
if: always() | |
run: cat packages/cherrypick-js/temp/cherrypick-js.api.md |