fix(Dropdown): opened dropdown must be closed in case open another one #83
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
name: Pull Request CI | |
on: | |
pull_request: | |
branches: ["release/*", "main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: 📥 Install dependencies | |
run: npm ci | |
- name: 🔧 Pure build | |
run: npm run build -- --pure | |
- name: 🧪 Run tests | |
run: npm run test | |
- name: 🧑💻 Linting source code | |
run: npm run lint-styles && npm run lint-scripts |