Set up redux infrastructure (#33) #26
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: Linting workflow | |
on: [push, pull_request] | |
env: | |
OPENSEARCH_DASHBOARDS_VERSION: 'main' | |
jobs: | |
run-lint: | |
name: Run lint script | |
runs-on: ubuntu-latest | |
if: github.repository == 'opensearch-project/opensearch-ai-flow-dashboards' | |
steps: | |
- name: Checkout OpenSearch Dashboards | |
uses: actions/checkout@v2 | |
with: | |
repository: opensearch-project/OpenSearch-Dashboards | |
ref: ${{ env.OPENSEARCH_DASHBOARDS_VERSION }} | |
path: OpenSearch-Dashboards | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: './OpenSearch-Dashboards/.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Yarn | |
# Need to use bash to avoid having a windows/linux specific step | |
shell: bash | |
run: | | |
YARN_VERSION=$(node -p "require('./OpenSearch-Dashboards/package.json').engines.yarn") | |
echo "Installing yarn@$YARN_VERSION" | |
npm i -g yarn@$YARN_VERSION | |
- run: node -v | |
- run: yarn -v | |
- name: Checkout plugin | |
uses: actions/checkout@v2 | |
with: | |
path: OpenSearch-Dashboards/plugins/opensearch-ai-flow-dashboards | |
- name: Bootstrap the plugin | |
run: | | |
cd OpenSearch-Dashboards/plugins/opensearch-ai-flow-dashboards | |
yarn osd bootstrap | |
- name: Run lint script | |
run: | | |
cd OpenSearch-Dashboards/plugins/opensearch-ai-flow-dashboards | |
yarn lint:es common/* public/* server/* |