Skip to content

Add lint script, workflow, and pre-commit hook #1

Add lint script, workflow, and pre-commit hook

Add lint script, workflow, and pre-commit hook #1

Workflow file for this run

name: Linting workflow
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
env:
OPENSEARCH_DASHBOARDS_VERSION: 'main'
jobs:
run-lint:
name: Run lint script

Check failure on line 13 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / Linting workflow

Invalid workflow file

The workflow is not valid. .github/workflows/lint.yml (Line: 13, Col: 5): Required property is missing: runs-on
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/*