-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UBER-477: Uberflow dependencies (#3440)
Signed-off-by: Andrey Sobolev <[email protected]>
- Loading branch information
Showing
25 changed files
with
331 additions
and
119 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 |
---|---|---|
|
@@ -10,11 +10,11 @@ concurrency: | |
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [main, develop] | ||
branches: [main] | ||
tags: | ||
- v* | ||
pull_request: | ||
branches: [main, develop] | ||
branches: [main] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
@@ -205,14 +205,7 @@ jobs: | |
mongodb-version: 5.0 | ||
|
||
- name: Testing... | ||
uses: paambaati/[email protected] | ||
env: | ||
CC_TEST_REPORTER_ID: 346a83855d7124e9da8e6ec36a4fd01dc432f5cdc755eb28da7d9c44da9d1142 | ||
with: | ||
coverageCommand: node common/scripts/install-run-rush.js test --verbose | ||
coverageLocations: | | ||
${{github.workspace}}/packages/*/coverage/lcov.info:lcov | ||
${{github.workspace}}/server/*/coverage/lcov.info:lcov | ||
run: node common/scripts/install-run-rush.js test --verbose | ||
uitest: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
@@ -282,12 +275,12 @@ jobs: | |
with: | ||
name: playwright-results | ||
path: ./tests/sanity/playwright-report/ | ||
- name: Upload DB snapshot | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: db-snapshot | ||
path: ./tests/db_dump | ||
# - name: Upload DB snapshot | ||
# if: always() | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: db-snapshot | ||
# path: ./tests/db_dump | ||
docker-build: | ||
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') }} | ||
needs: [build, uitest, test, svelte-check] | ||
|
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,20 @@ | ||
# This config file is very similar to common/config/rush/.npmrc, except that .npmrc-publish | ||
# is used by the "rush publish" command, as publishing often involves different credentials | ||
# and registries than other operations. | ||
# | ||
# Before invoking the package manager, Rush will copy this file to "common/temp/publish-home/.npmrc" | ||
# and then temporarily map that folder as the "home directory" for the current user account. | ||
# This enables the same settings to apply for each project folder that gets published. The copied file | ||
# will omit any config lines that reference environment variables that are undefined in that session; | ||
# this avoids problems that would otherwise result due to a missing variable being replaced by | ||
# an empty string. | ||
# | ||
# * * * SECURITY WARNING * * * | ||
# | ||
# It is NOT recommended to store authentication tokens in a text file on a lab machine, because | ||
# other unrelated processes may be able to read the file. Also, the file may persist indefinitely, | ||
# for example if the machine loses power. A safer practice is to pass the token via an | ||
# environment variable, which can be referenced from .npmrc using ${} expansion. For example: | ||
# | ||
# //registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN} | ||
# |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,29 @@ | ||
/** | ||
* This configuration file manages Rush's plugin feature. | ||
*/ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-plugins.schema.json", | ||
"plugins": [ | ||
/** | ||
* Each item configures a plugin to be loaded by Rush. | ||
*/ | ||
// { | ||
// /** | ||
// * The name of the NPM package that provides the plugin. | ||
// */ | ||
// "packageName": "@scope/my-rush-plugin", | ||
// /** | ||
// * The name of the plugin. This can be found in the "pluginName" | ||
// * field of the "rush-plugin-manifest.json" file in the NPM package folder. | ||
// */ | ||
// "pluginName": "my-plugin-name", | ||
// /** | ||
// * The name of a Rush autoinstaller that will be used for installation, which | ||
// * can be created using "rush init-autoinstaller". Add the plugin's NPM package | ||
// * to the package.json "dependencies" of your autoinstaller, then run | ||
// * "rush update-autoinstaller". | ||
// */ | ||
// "autoinstallerName": "rush-plugins" | ||
// } | ||
] | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
{ "major": 0, "minor": 6, "patch": 99 } | ||
{ "major": 0, "minor": 6, "patch": 108 } |
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
2 changes: 1 addition & 1 deletion
2
packages/platform-rig/profiles/default/config/rush-project.json
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"incrementalBuildIgnoredGlobs": ["temp/**"], | ||
"incrementalBuildIgnoredGlobs": ["temp/**", "dist_cache/**", "lib/**"], | ||
"disableBuildCacheForProject": false, | ||
|
||
"operationSettings": [ | ||
{ | ||
"operationName": "build", | ||
"outputFolderNames": ["dist_cache"] | ||
"outputFolderNames": ["dist", "lib", "dist_cache"] | ||
} | ||
] | ||
} |
Oops, something went wrong.