-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Regenerate and verify the node ids file
in order to enforce congruence between it and the source file. Furthermore drop the generated file from rustfmt ignore as it's apparently currently formatted. And as its the last entry, drop the file itself.
- Loading branch information
1 parent
59094ff
commit 5a260e7
Showing
3 changed files
with
22 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: CI verify cleanly generated node ids | ||
'on': | ||
workflow_call: null | ||
jobs: | ||
node_ids: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout (GitHub) | ||
uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: npm install | ||
working-directory: tools/schema/ | ||
- name: Regenerate node ids | ||
run: node gen_node_ids | ||
working-directory: tools/schema/ | ||
- name: Format generated code | ||
run: rustfmt lib/src/types/node_ids.rs | ||
- name: Verify generated code matches committed code | ||
run: git status --porcelain |
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
This file was deleted.
Oops, something went wrong.