-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into enhance-grouping-for-context-menu-options
Signed-off-by: Josh Romero <[email protected]>
- Loading branch information
Showing
188 changed files
with
3,723 additions
and
1,092 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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
# https://docs.codecov.com/docs/codecov-yaml | ||
codecov: | ||
require_ci_to_pass: yes | ||
|
||
coverage: | ||
status: | ||
project: | ||
default: | ||
# https://docs.codecov.com/docs/commit-status#target | ||
target: auto # coverage must be equal or above the previous commit | ||
target: auto | ||
threshold: 2% # the leniency in hitting the target | ||
|
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 |
---|---|---|
|
@@ -25,6 +25,8 @@ env: | |
TEST_OPENSEARCH_TRANSPORT_PORT: 9403 | ||
TEST_OPENSEARCH_PORT: 9400 | ||
OSD_SNAPSHOT_SKIP_VERIFY_CHECKSUM: true | ||
# Version 112.0.5615.0 | ||
CHROME_VERSION: 1109208 | ||
|
||
jobs: | ||
build-lint-test: | ||
|
@@ -122,6 +124,7 @@ jobs: | |
functional-tests: | ||
name: Run functional tests on ${{ matrix.name }} (ciGroup${{ matrix.group }}) | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] | ||
|
@@ -134,6 +137,22 @@ jobs: | |
steps: | ||
- run: echo Running functional tests for ciGroup${{ matrix.group }} | ||
|
||
- name: Setup Chrome | ||
id: setup-chrome | ||
uses: browser-actions/setup-chrome@v1 | ||
with: | ||
chrome-version: ${{ env.CHROME_VERSION }} | ||
|
||
- name: Set Chrome Path | ||
if: matrix.os != 'windows-latest' | ||
run: | | ||
echo "TEST_BROWSER_BINARY_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV | ||
- name: Set Chrome Path (Windows) | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
echo "TEST_BROWSER_BINARY_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $env:GITHUB_ENV | ||
- name: Configure git's autocrlf (Windows only) | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
|
@@ -343,17 +362,6 @@ jobs: | |
npm i -g [email protected] | ||
yarn config set network-timeout 1000000 -g | ||
- name: Configure Yarn Cache | ||
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV | ||
|
||
- name: Initialize Yarn Cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.YARN_CACHE_LOCATION }} | ||
key: yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
yarn- | ||
- name: Get package version | ||
run: | | ||
echo "VERSION=$(yarn --silent pkg-version)" >> $GITHUB_ENV | ||
|
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
Oops, something went wrong.