From cee1d5e2d01359e6d762a10fc67d4e7c1cc830eb Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Thu, 30 Mar 2023 02:33:19 +0200 Subject: chore: integrate misskey-js as a workspace item (git subtree) (#10409) * Additional changes for the merge * api-misskey-js --- .github/workflows/api-misskey-js.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/api-misskey-js.yml (limited to '.github/workflows/api-misskey-js.yml') diff --git a/.github/workflows/api-misskey-js.yml b/.github/workflows/api-misskey-js.yml new file mode 100644 index 0000000000..6411d63bd5 --- /dev/null +++ b/.github/workflows/api-misskey-js.yml @@ -0,0 +1,36 @@ +name: API report (misskey.js) + +on: [push, pull_request] + +jobs: + report: + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3.3.0 + + - run: corepack enable + + - name: Setup Node.js + uses: actions/setup-node@v3.6.0 + with: + node-version: 18.x + cache: 'pnpm' + + - name: Install dependencies + run: pnpm i --frozen-lockfile + + - name: Build + run: pnpm --filter misskey-js build + + - name: Check files + run: ls packages/misskey-js/built + + - name: API report + run: pnpm --filter misskey-js api-prod + + - name: Show report + if: always() + run: cat packages/misskey-js/temp/misskey-js.api.md -- cgit v1.2.3-freya