sqlite-web 0.7.2
gitea.db
action_run_job
Create
Query
access
access_token
action
action_artifact
action_run
action_run_index
action_run_job
action_runner
action_runner_token
action_schedule
action_schedule_spec
action_task
action_task_output
action_task_step
action_tasks_version
action_variable
app_state
attachment
auth_token
badge
branch
collaboration
comment
commit_status
commit_status_index
commit_status_summary
commit_sync_log
commit_sync_status
dbfs_data
dbfs_meta
deploy_key
email_address
email_hash
external_login_user
follow
gpg_key
gpg_key_import
hook_task
issue
issue_assignees
issue_content_history
issue_dependency
issue_index
issue_label
issue_pin
issue_user
issue_watch
label
language_stat
lfs_lock
lfs_meta_object
login_source
milestone
mirror
notice
notification
oauth2_application
oauth2_authorization_code
oauth2_grant
org_user
package
package_blob
package_blob_upload
package_cleanup_rule
package_file
package_property
package_version
project
project_board
project_issue
protected_branch
protected_tag
public_key
pull_auto_merge
pull_request
push_mirror
reaction
release
renamed_branch
repo_archiver
repo_hidden_file
repo_indexer_status
repo_license
repo_redirect
repo_topic
repo_transfer
repo_unit
repository
review
review_state
secret
session
sqlite_sequence
star
stopwatch
system_setting
task
team
team_invite
team_repo
team_unit
team_user
topic
tracked_time
two_factor
upload
user
user_badge
user_blocking
user_open_id
user_redirect
user_setting
version
watch
webauthn_credential
webhook
Toggle helper tables
Structure
Content
Query
Insert
Drop
Import
Export
Delete row 31205 from action_run_job
id
31205
run_id
23548
repo_id
91
owner_id
5
commit_sha
625450881bfb787bfa4ac092e11bfe534c340163
is_fork_pull_request
0
name
Runtime and UI acceptance
attempt
0
workflow_payload
name: Governance "on": pull_request:
name: Governance "on": pull_request: push: branches: - main jobs: runtime-acceptance: name: Runtime and UI acceptance runs-on: ubuntu-latest env: # 大陆网络直连 Playwright CDN 会长时间零进度假死(本机实测 8 分钟 0 字节, # npmmirror 30 秒完成);runner 与本机同网段,直接走镜像。 PLAYWRIGHT_DOWNLOAD_HOST: https://cdn.npmmirror.com/binaries/playwright steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: "0" - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: "22" - name: Enable pnpm run: | corepack enable corepack prepare pnpm@9.15.9 --activate - name: Provision PostgreSQL and Redis run: | set -euo pipefail command -v docker >/dev/null 2>&1 || { echo "::error::runner 宿主缺 docker——runtime 验收需要它启动隔离 PostgreSQL/Redis(或改用支持 services 的容器模式 runner)"; exit 1; } PG_NAME="qwen38fn-ci-pg-${GITHUB_RUN_ID}" REDIS_NAME="qwen38fn-ci-redis-${GITHUB_RUN_ID}" docker rm -f "$PG_NAME" "$REDIS_NAME" >/dev/null 2>&1 || true docker run -d --name "$PG_NAME" \ -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres \ -e POSTGRES_DB=qwen3_8_flash_next_ci \ -p 127.0.0.1::5432 postgres:16 >/dev/null docker run -d --name "$REDIS_NAME" -p 127.0.0.1::6379 redis:7 >/dev/null PG_PORT="$(docker port "$PG_NAME" 5432/tcp | head -n1 | awk -F: '{print $NF}')" REDIS_PORT="$(docker port "$REDIS_NAME" 6379/tcp | head -n1 | awk -F: '{print $NF}')" for _ in $(seq 1 60); do docker exec "$PG_NAME" pg_isready -U postgres >/dev/null 2>&1 && break sleep 1 done docker exec "$PG_NAME" pg_isready -U postgres -d qwen3_8_flash_next_ci [ "$(docker exec "$REDIS_NAME" redis-cli ping)" = "PONG" ] { echo "PG_NAME=$PG_NAME" echo "REDIS_NAME=$REDIS_NAME" echo "DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:${PG_PORT}/qwen3_8_flash_next_ci?schema=public" echo "REDIS_URL=redis://127.0.0.1:${REDIS_PORT}" } >> "$GITHUB_ENV" echo "PostgreSQL 127.0.0.1:${PG_PORT} / Redis 127.0.0.1:${REDIS_PORT} 就绪" - name: Install dependencies run: pnpm install --frozen-lockfile - name: Generate Prisma clients run: pnpm prisma:generate - name: Run real DB and Redis acceptance run: pnpm check:runtime - name: Install Playwright browser run: pnpm --filter web exec playwright install --with-deps chromium - name: Run UI acceptance run: pnpm check:ui - if: always() name: Tear down PostgreSQL and Redis run: docker rm -f "${PG_NAME:-}" "${REDIS_NAME:-}" >/dev/null 2>&1 || true
...
job_id
runtime-acceptance
needs
["static-governance"]
runs_on
["ubuntu-latest"]
task_id
0
status
4
started
0
stopped
0
created
1788055006
updated
1788055099
raw_concurrency
is_concurrency_evaluated
1
concurrency_group
concurrency_cancel
0
Delete
Cancel