Tenant change related integration tests - allow tenant change and retain tenant in shortlink #663
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
# Copyright OpenSearch Contributors | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Lint Checker | |
on: | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
tests: | |
name: Lint Checker | |
runs-on: ubuntu-latest | |
env: | |
# prevents extra Cypress installation progress messages | |
CI: 1 | |
# avoid warnings like "tput: No value for $TERM and no -T specified" | |
TERM: xterm | |
steps: | |
- name: Checkout cypress-test | |
uses: actions/checkout@v2 | |
with: | |
repository: ${{github.repository}} | |
path: cypress-test | |
- name: Run Lint | |
working-directory: cypress-test | |
run: | | |
echo "VERSION=$(yarn --silent pkg-version)" >> $GITHUB_ENV | |
npm install | |
yarn lint |