Skip to content

Commit

Permalink
Omit lint workflow temporarily
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Ohlsen <[email protected]>
  • Loading branch information
ohltyler committed Mar 6, 2024
1 parent 2d176f0 commit de7993f
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
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/dashboards-flow-framework'
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/dashboards-flow-framework
- name: Bootstrap the plugin
run: |
cd OpenSearch-Dashboards/plugins/dashboards-flow-framework
yarn osd bootstrap
- name: Run lint script
run: |
cd OpenSearch-Dashboards/plugins/dashboards-flow-framework
yarn lint:es common/* public/* server/*
# 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/dashboards-flow-framework'
# 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/dashboards-flow-framework
# - name: Bootstrap the plugin
# run: |
# cd OpenSearch-Dashboards/plugins/dashboards-flow-framework
# yarn osd bootstrap
# - name: Run lint script
# run: |
# cd OpenSearch-Dashboards/plugins/dashboards-flow-framework
# yarn lint:es common/* public/* server/*

0 comments on commit de7993f

Please sign in to comment.