Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Adds test workflow and updates snapshot (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbbaughe authored Mar 31, 2020
1 parent 048deba commit 385854f
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/unit-tests-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Unit tests workflow
on:
pull_request:
branches:
- master

jobs:
tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout Kibana
uses: actions/checkout@v2
with:
repository: opendistro-for-elasticsearch/kibana-oss
ref: 7.6.1
token: ${{ secrets.GITHUB_KIBANA_OSS }}
path: kibana
- name: Get node and yarn versions
id: versions_step
run: |
echo "::set-output name=node_version::$(node -p "(require('./kibana/package.json').engines.node).match(/[.0-9]+/)[0]")"
echo "::set-output name=yarn_version::$(node -p "(require('./kibana/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 Kibana
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 Alerting Kibana plugin
uses: actions/checkout@v2
with:
path: kibana/plugins/alerting-kibana-plugin
- name: Bootstrap plugin/kibana
run: |
cd kibana/plugins/alerting-kibana-plugin
yarn kbn bootstrap
- name: Run tests
run: |
cd kibana/plugins/alerting-kibana-plugin
yarn run test:jest
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ exports[`TriggerQuery renders 1`] = `
>
<EuiCodeEditor
height="200px"
mode="plain_text"
readOnly={true}
setOptions={Object {}}
theme="github"
Expand Down

0 comments on commit 385854f

Please sign in to comment.