This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a system/workflow to keep ts interfaces in sync with Zarf structs
- Loading branch information
Lucas Rodriguez
committed
Oct 27, 2023
1 parent
6c433d8
commit ec05816
Showing
12 changed files
with
2,216 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ | |
"node_modules", | ||
"dist", | ||
"hack", | ||
"build" | ||
"build", | ||
"capabilities/zarf-types.ts" | ||
], | ||
"root": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Validate Schema Generation | ||
on: | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | ||
|
||
- name: Setup Go | ||
uses: defenseunicorns/zarf/.github/actions/golang@main | ||
|
||
- name: Check that 'make gen-schema' was ran | ||
run: make test-gen-schema | ||
|
||
- name: Save logs | ||
if: always() | ||
uses: defenseunicorns/zarf/.github/actions/save-logs@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.