Skip to content

Show expense report in LHN if user doesn't have access to parent policyChat (removed manager condition) #89546

Show expense report in LHN if user doesn't have access to parent policyChat (removed manager condition)

Show expense report in LHN if user doesn't have access to parent policyChat (removed manager condition) #89546

Workflow file for this run

name: ESLint check
on:
workflow_call:
pull_request:
types: [opened, synchronize]
branches-ignore: [staging, production]
paths: ['**.js', '**.ts', '**.tsx', '**.json', '**.mjs', '**.cjs', 'config/.editorconfig', '.watchmanconfig', '.imgbotconfig']
concurrency:
group: ${{ github.ref == 'refs/heads/main' && format('{0}-{1}', github.ref, github.sha) || github.ref }}-lint
cancel-in-progress: true
jobs:
lint:
name: ESLint check
if: ${{ github.actor != 'OSBotify' || github.event_name == 'workflow_call' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: ./.github/actions/composite/setupNode
- name: Lint JavaScript and Typescript with ESLint
run: npm run lint
env:
CI: true