forked from SchemaStore/schemastore
-
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.
GH Actions workflows multiple "OneOf" is true (SchemaStore#2465)
* fix issue SchemaStore#2463 GH Actions workflows two items in OneOff is true. thats is why IntelliJ give error. "$ref": "..." must be without other keyword in draft 04..07 * add test file mentioned in issue SchemaStore#2463
- Loading branch information
1 parent
60295e6
commit 44e14db
Showing
3 changed files
with
672 additions
and
2 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
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,31 @@ | ||
name: "Example workflow for schema store" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "**" | ||
|
||
jobs: | ||
vulnerabilities: | ||
name: Example workflow for schema store | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup ssh keys | ||
env: | ||
TEST_VALUE_5: ${{ secrets.TEST_VALUE_5 }} | ||
TEST_VALUE_6: ${{ secrets.TEST_VALUE_6 }} | ||
run: |- | ||
# Just some fake commands | ||
apt-get update | ||
apt-get install -y vim | ||
- name: Cache composer | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
env: | ||
TEST_VALUE_1: ${{ secrets.TEST_VALUE_1 }} | ||
TEST_VALUE_2: ${{ secrets.TEST_VALUE_2 }} | ||
TEST_VALUE_3: "TEST VALUE 3" | ||
TEST_VALUE_4: ${{ secrets.TEST_VALUE_4 }} |
Oops, something went wrong.