Skip to content

feat: add wiki subject-person relation edit apis #8749

feat: add wiki subject-person relation edit apis

feat: add wiki subject-person relation edit apis #8749

Workflow file for this run

name: ci
on:
pull_request:
branches:
- 'master'
push:
branches:
- 'master'
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7.0.1
with:
submodules: 'true'
- uses: ./.github/actions/setup-js-env
- run: pnpm exec prettier --check .
- run: pnpm exec tsc
- run: pnpm run lint
# check generated code fresh
- run: pnpm run build-common
- run: pnpm run generate:pb
- run: pnpm run format
- run: git diff --exit-code
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7.0.1
with:
repository: 'bangumi/dev-env'
path: 'dev-env'
ref: gh-pages
- run: mv dev-env $HOME/dev-env
- run: cd ~/dev-env && docker compose up -d
- uses: actions/checkout@v7.0.1
- uses: ./.github/actions/setup-js-env
- run: bash $HOME/dev-env/wait_mysql_ready.sh
- run: pnpm run test --coverage
timeout-minutes: 10
env:
REDIS_URI: 'redis://:redis-pass@127.0.0.1:6379/0'
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7.0.1
- run: docker build -t tmp -f Dockerfile .
- run: docker run tmp ./dist/index.mjs --help
# test mq native module
- run: docker run tmp ./dist/mq.mjs --help