Skip to content

Commit 6e86028

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 639c68c + 59cafa0 commit 6e86028

File tree

56 files changed

+5269
-1070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+5269
-1070
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Database Schema Visualization CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'docs/developer/database-schema.dbml'
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install dbdocs
17+
run: sudo npm install -g dbdocs
18+
19+
- name: Check dbdocs
20+
run: dbdocs
21+
22+
- name: sync database schema to dbdocs
23+
env:
24+
DBDOCS_TOKEN: ${{ secrets.DBDOCS_TOKEN }}
25+
run: npm run db:visualize

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
lockfile=false
22
resolution-mode=highest
33

4+
ignore-workspace-root-check=true
45
enable-pre-post-scripts=true
56

67
public-hoist-pattern[]=*@umijs/lint*

0 commit comments

Comments
 (0)