fix(MoneyInput): use locale from context if no locale provided #3389
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
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
- dev/updates | |
name: Security | |
jobs: | |
security: | |
name: CodeQL scan | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- working-directory: packages/react | |
name: React | |
- working-directory: packages/storybook | |
name: Storybook | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: CodeQL | |
uses: equisoft-actions/codeql@v1 | |
with: | |
category: ${{ matrix.name }} | |
languages: typescript,javascript | |
working-directory: ${{ matrix.working-directory }} |