Skip to content

Commit

Permalink
Merge branch 'main' into init_split
Browse files Browse the repository at this point in the history
  • Loading branch information
dqhl76 committed Nov 1, 2024
2 parents f84317b + ff49cc6 commit e0336fd
Show file tree
Hide file tree
Showing 58 changed files with 697 additions and 890 deletions.
57 changes: 57 additions & 0 deletions .config/workspace-schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"dependencies": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"workspace": {
"type": "boolean",
"enum": [
true
]
}
},
"required": [
"workspace"
]
}
},
"dev-dependencies": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"workspace": {
"type": "boolean",
"enum": [
true
]
}
},
"required": [
"workspace"
]
}
},
"build-dependencies": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"workspace": {
"type": "boolean",
"enum": [
true
]
}
},
"required": [
"workspace"
]
}
}
}
}
4 changes: 3 additions & 1 deletion .github/actions/check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ runs:

- name: Check toml format
shell: bash
run: taplo fmt --check
run: |
taplo check
taplo fmt --check
- name: Audit dependencies
shell: bash
Expand Down
Loading

0 comments on commit e0336fd

Please sign in to comment.