2023-03-29 17:33:19 -07:00
|
|
|
name: API report (misskey.js)
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
report:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-10-19 03:35:13 -07:00
|
|
|
uses: actions/checkout@v4.1.1
|
2023-03-29 17:33:19 -07:00
|
|
|
|
|
|
|
- run: corepack enable
|
|
|
|
|
|
|
|
- name: Setup Node.js
|
2023-08-19 02:39:39 -07:00
|
|
|
uses: actions/setup-node@v3.8.1
|
2023-03-29 17:33:19 -07:00
|
|
|
with:
|
2023-04-14 18:20:39 -07:00
|
|
|
node-version-file: '.node-version'
|
2023-03-29 17:33:19 -07:00
|
|
|
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()
|
2023-03-29 21:56:48 -07:00
|
|
|
run: cat packages/misskey-js/temp/misskey-js.api.md
|