Remove dco and update artifact action to v4 #7
Workflow file for this run
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
name: Test and Build Observability Dashboards Plugin | |
on: [pull_request, push] | |
env: | |
PLUGIN_NAME: dashboards-observability | |
OPENSEARCH_VERSION: '1.3' | |
OPENSEARCH_PLUGIN_VERSION: 1.3.9.0 | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Enable longer filenames for windows | |
- name: Enable longer filenames | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: git config --system core.longpaths true | |
- name: Checkout OpenSearch Dashboards | |
uses: actions/checkout@v2 | |
with: | |
repository: opensearch-project/OpenSearch-Dashboards | |
ref: ${{ env.OPENSEARCH_VERSION }} | |
path: OpenSearch-Dashboards | |
- name: Get node and yarn versions | |
id: versions_step | |
run: | | |
echo "::set-output name=node_version::$(node -p "(require('./OpenSearch-Dashboards/package.json').engines.node).match(/[.0-9]+/)[0]")" | |
echo "::set-output name=yarn_version::$(node -p "(require('./OpenSearch-Dashboards/package.json').engines.yarn).match(/[.0-9]+/)[0]")" | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ steps.versions_step.outputs.node_version }} | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install correct yarn version for OpenSearch Dashboards | |
run: | | |
npm uninstall -g yarn | |
echo "Installing yarn ${{ steps.versions_step.outputs.yarn_version }}" | |
npm i -g yarn@${{ steps.versions_step.outputs.yarn_version }} | |
- name: Checkout Dashboards Observability | |
uses: actions/checkout@v2 | |
with: | |
path: OpenSearch-Dashboards/plugins/dashboards-observability | |
- name: Plugin Bootstrap | |
run: | | |
cd OpenSearch-Dashboards/plugins/dashboards-observability | |
yarn osd bootstrap | |
- name: Test all dashboards-observability modules | |
run: | | |
cd OpenSearch-Dashboards/plugins/dashboards-observability | |
yarn test --coverage | |
- name: Upload coverage | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
uses: codecov/codecov-action@v1 | |
with: | |
flags: dashboards-observability | |
directory: ./OpenSearch-Dashboards/plugins/dashboards-observability | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Build Artifact | |
run: | | |
cd OpenSearch-Dashboards/plugins/dashboards-observability | |
yarn build | |
mv ./build/*.zip ./build/${{ env.PLUGIN_NAME }}-${{ env.OPENSEARCH_PLUGIN_VERSION }}.zip | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dashboards-observability-${{ matrix.os }} | |
path: ./OpenSearch-Dashboards/plugins/dashboards-observability/build |