c5af9e371c
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.6.0...v4.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
745 B
YAML
36 lines
745 B
YAML
name: API report (misskey.js)
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
report:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.0.0
|
|
|
|
- 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
|