-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: synchronize package versions & add CI checks
- Loading branch information
Showing
12 changed files
with
2,293 additions
and
1,785 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 |
---|---|---|
|
@@ -33,6 +33,10 @@ jobs: | |
run: npm ci | ||
- name: Build packages | ||
run: npm run build | ||
- name: Check Package Versions are in Sync | ||
uses: JamieMason/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Validate Current Configuration (deneb-config.json) | ||
run: npm run validate-config-for-commit | ||
- name: Linting Checks | ||
|
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,50 @@ | ||
{ | ||
"$schema": "https://unpkg.com/[email protected]/dist/schema.json", | ||
"source": [ | ||
"package.json", | ||
"packages/*/package.json" | ||
], | ||
"indent": " ", | ||
"versionGroups": [ | ||
{ | ||
"label": "Power BI Visuals API should match desired version", | ||
"dependencies": [ | ||
"powerbi-visuals-api" | ||
], | ||
"dependencyTypes": [ | ||
"dev" | ||
], | ||
"pinVersion": "5.7.0" | ||
}, | ||
{ | ||
"label": "Vega should be specific version we wish to package", | ||
"dependencies": [ | ||
"vega" | ||
], | ||
"dependencyTypes": [ | ||
"dev" | ||
], | ||
"pinVersion": "5.28.0" | ||
}, | ||
{ | ||
"label": "Vega-Lite should be specific version we wish to package", | ||
"dependencies": [ | ||
"vega-lite" | ||
], | ||
"dependencyTypes": [ | ||
"dev" | ||
], | ||
"pinVersion": "5.18.0" | ||
}, | ||
{ | ||
"label": "Use wildcard when developing local packages", | ||
"dependencies": [ | ||
"@deneb-viz/**" | ||
], | ||
"dependencyTypes": [ | ||
"dev" | ||
], | ||
"pinVersion": "*" | ||
} | ||
] | ||
} |
Oops, something went wrong.