Skip to content

Commit

Permalink
Merge branch 'opensearch-project:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
kavilla authored Apr 27, 2022
2 parents c560fd4 + b30d877 commit c4aa189
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.18.2
14.19.1
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.18.2
14.19.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG NODE_VERSION=14.18.2
ARG NODE_VERSION=14.19.1
FROM node:${NODE_VERSION} AS base

ENV HOME '.'
Expand Down
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ OpenSearch Dashboards is an open source search and analytics visualization. We a

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).

## Code Summary

[![Build and Test][build-and-test-badge]][build-and-test-link]
[![Unit Test Code Coverage][codecov-badge]][codecov-link]
[![Developer Certificate of Origin Check][dco-badge]][dco-link]
[![Link Checker][link-checker-badge]][link-checker-link]

## Project Resources

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

Copyright OpenSearch Contributors. See [NOTICE](NOTICE.txt) for details.

[build-and-test-badge]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/build_and_test_workflow.yml/badge.svg
[build-and-test-link]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/build_and_test_workflow.yml
[codecov-badge]: https://codecov.io/gh/opensearch-project/OpenSearch-Dashboards/branch/main/graphs/badge.svg
[codecov-link]: https://app.codecov.io/gh/opensearch-project/OpenSearch-Dashboards
[dco-badge]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/dco.yml/badge.svg
[dco-link]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/dco.yml
[link-checker-badge]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/links_checker.yml/badge.svg
[link-checker-link]: https://github.com/opensearch-project/OpenSearch-Dashboards/actions/workflows/links_checker.yml
2 changes: 1 addition & 1 deletion TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ In general, we recommend four tiers of tests:

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

# Running tests
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
"built_assets",
".eslintcache",
".node_binaries",
"src/plugins/*/target"
"src/plugins/*/target",
"src/core/target",
"src/test_utils/target"
]
}
},
Expand Down Expand Up @@ -449,7 +451,7 @@
"zlib": "^1.0.5"
},
"engines": {
"node": "14.18.2",
"node": "14.19.1",
"yarn": "^1.21.1"
}
}

0 comments on commit c4aa189

Please sign in to comment.