Skip to content

Commit c4aa189

Browse files
authored
Merge branch 'opensearch-project:main' into main
2 parents c560fd4 + b30d877 commit c4aa189

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

.node-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.18.2
1+
14.19.1

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.18.2
1+
14.19.1

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG NODE_VERSION=14.18.2
1+
ARG NODE_VERSION=14.19.1
22
FROM node:${NODE_VERSION} AS base
33

44
ENV HOME '.'

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ OpenSearch Dashboards is an open source search and analytics visualization. We a
1212

1313
Feel free to take a look at what the community has been up to, and then head over to the [Project Board](https://github.com/opensearch-project/OpenSearch-Dashboards/projects) to track release targets, or jump in and [start opening issues](https://github.com/opensearch-project/OpenSearch-Dashboards/issues/new/choose), [set up your development environment](DEVELOPER_GUIDE.md#getting-started), or [start contributing](CONTRIBUTING.md).
1414

15+
## Code Summary
16+
17+
[![Build and Test][build-and-test-badge]][build-and-test-link]
18+
[![Unit Test Code Coverage][codecov-badge]][codecov-link]
19+
[![Developer Certificate of Origin Check][dco-badge]][dco-link]
20+
[![Link Checker][link-checker-badge]][link-checker-link]
21+
1522
## Project Resources
1623

1724
* [Project Website](https://opensearch.org/)
@@ -37,3 +44,12 @@ This project is licensed under the [Apache v2.0 License](LICENSE.txt).
3744
## Copyright
3845

3946
Copyright OpenSearch Contributors. See [NOTICE](NOTICE.txt) for details.
47+
48+
[build-and-test-badge]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/build_and_test_workflow.yml/badge.svg
49+
[build-and-test-link]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/build_and_test_workflow.yml
50+
[codecov-badge]: https://codecov.io/gh/opensearch-project/OpenSearch-Dashboards/branch/main/graphs/badge.svg
51+
[codecov-link]: https://app.codecov.io/gh/opensearch-project/OpenSearch-Dashboards
52+
[dco-badge]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/dco.yml/badge.svg
53+
[dco-link]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/dco.yml
54+
[link-checker-badge]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/links_checker.yml/badge.svg
55+
[link-checker-link]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/links_checker.yml

TESTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In general, we recommend four tiers of tests:
2424

2525
# Requirements
2626
* Install the latest NodeJS, [NPM](https://www.npmjs.com/get-npm) and [Yarn](https://classic.yarnpkg.com/en/docs/install/#mac-stable)
27-
* `nvm install v14.18.2`
27+
* `nvm install v14.19.1`
2828
* `npm install -g yarn`
2929

3030
# Running tests

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
"built_assets",
3232
".eslintcache",
3333
".node_binaries",
34-
"src/plugins/*/target"
34+
"src/plugins/*/target",
35+
"src/core/target",
36+
"src/test_utils/target"
3537
]
3638
}
3739
},
@@ -449,7 +451,7 @@
449451
"zlib": "^1.0.5"
450452
},
451453
"engines": {
452-
"node": "14.18.2",
454+
"node": "14.19.1",
453455
"yarn": "^1.21.1"
454456
}
455457
}

0 commit comments

Comments
 (0)