summaryrefslogtreecommitdiff
path: root/.github/workflows/api-misskey-js.yml
blob: d0018ffcf9a8993176b62b9f3fa14b5755bb7bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: API report (misskey.js)

on: [push, pull_request]

jobs:
  report:

    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v3.5.3

      - run: corepack enable

      - name: Setup Node.js
        uses: actions/setup-node@v3.8.1
        with:
          node-version-file: '.node-version'
          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