-
-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#2035]: feature: Reference plugin JSON schemas
- Loading branch information
Showing
9 changed files
with
325 additions
and
1,658 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,38 @@ | ||
name: rr_json_schema_validation | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- stable | ||
paths: | ||
- '.rr*' | ||
- 'schemas/**' | ||
- '.github/workflows/schema.yaml' | ||
pull_request: | ||
paths: | ||
- '.rr*' | ||
- 'schemas/**' | ||
- '.github/workflows/schema.yaml' | ||
|
||
jobs: | ||
validate-json-schema: | ||
name: Validate JSON Schema files | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./schemas | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup nodejs | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
|
||
- name: Install Test Script Dependencies | ||
run: npm install | ||
|
||
- name: Run Script | ||
run: node test.js |
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 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 |
---|---|---|
|
@@ -24,3 +24,4 @@ rr.exe | |
.vscode | ||
.DS_Store | ||
**/.DS_Store | ||
**/node_modules |
Oops, something went wrong.