Skip to content

PROD-190: Ensure alert is visible when modal is displayed #57

PROD-190: Ensure alert is visible when modal is displayed

PROD-190: Ensure alert is visible when modal is displayed #57

Workflow file for this run

name: Linters
on: pull_request
env:
GITHUB_BASE_REF: ${{ github.base_ref }}
jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run npm install
shell: bash -l {0}
run: |
nvm install
nvm use
npm i
- name: Fetch target branch
run: git fetch -n origin ${GITHUB_BASE_REF}
- name: Run stylelint linter
#This step will always run regardless of previous step's status
#without if: ${{ always() }}, if the previous step is failure,
#the remaining step will not be executed.
run: git diff --diff-filter=d origin/${GITHUB_BASE_REF} --name-only -- '*.scss' | xargs -r npx stylelint --config .stylelintrc