09d30fef5b
* ci: include themselves in `on.push.paths` command: find .github/workflows -type f \( -name '*.yaml' -or -name '*.yml' \) | xargs -I {} yq_4.44.2-linux_x86-64 'select(.on.push.paths != null) | .[0] | map("{}")[0]' {} | xargs -I {} ~/.local/bin/yq_4.44.2-linux_x86-64 -i '.on.push.paths += ["{}"]' {} * ci: include themselves in `on.pull_request.paths` command: find .github/workflows -type f \( -name '*.yaml' -or -name '*.yml' \) | xargs -I {} yq_4.44.2-linux_x86-64 'select(.on.pull_request.paths != null) | .[0] | map("{}")[0]' {} | xargs -I {} ~/.local/bin/yq_4.44.2-linux_x86-64 -i '.on.pull_request.paths += ["{}"]' {}
43 lines
921 B
YAML
43 lines
921 B
YAML
name: API report (misskey.js)
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- packages/misskey-js/**
|
|
- .github/workflows/api-misskey-js.yml
|
|
pull_request:
|
|
paths:
|
|
- packages/misskey-js/**
|
|
- .github/workflows/api-misskey-js.yml
|
|
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 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
|