mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-30 03:52:15 +09:00
363bdac39b
Some checks failed
Check SPDX-License-Identifier / check-spdx-license-id (push) Waiting to run
Check copyright year / check_copyright_year (push) Waiting to run
Publish Docker image (develop) / Build (linux/amd64) (push) Waiting to run
Publish Docker image (develop) / Build (linux/arm64) (push) Waiting to run
Publish Docker image (develop) / merge (push) Blocked by required conditions
Dockle / dockle (push) Waiting to run
Storybook / build (push) Waiting to run
Test (backend) / Unit tests (backend) (22.11.0) (push) Waiting to run
Test (backend) / E2E tests (backend) (22.11.0) (push) Waiting to run
Test (federation) / Federation test (22.11.0) (push) Waiting to run
Test (frontend) / Unit tests (frontend) (22.11.0) (push) Waiting to run
Test (frontend) / E2E tests (frontend) (chrome, 22.11.0) (push) Waiting to run
Test (production install and build) / Production build (22.11.0) (push) Waiting to run
api.json validation / validate-api-json (22.11.0) (push) Waiting to run
Test (misskey.js) / Unit tests (misskey.js) (22.11.0) (push) Has been cancelled
* ci: improve CI configuration * ci: add name for some jobs
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: api.json validation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
paths:
|
|
- packages/backend/**
|
|
- .github/workflows/validate-api-json.yml
|
|
pull_request:
|
|
paths:
|
|
- packages/backend/**
|
|
- .github/workflows/validate-api-json.yml
|
|
jobs:
|
|
validate-api-json:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [22.11.0]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.1
|
|
with:
|
|
submodules: true
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4.0.4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'pnpm'
|
|
- name: Install Redocly CLI
|
|
run: npm i -g @redocly/cli
|
|
- run: corepack enable
|
|
- run: pnpm i --frozen-lockfile
|
|
- name: Check pnpm-lock.yaml
|
|
run: git diff --exit-code pnpm-lock.yaml
|
|
- name: Copy Configure
|
|
run: cp .config/example.yml .config/default.yml
|
|
- name: Build and generate
|
|
run: pnpm build && pnpm --filter backend generate-api-json
|
|
- name: Validation
|
|
run: npx @redocly/cli lint --extends=minimal ./packages/backend/built/api.json
|