Skip to content

Commit

Permalink
feature(dropdown): add dropdown icon integration (#969)
Browse files Browse the repository at this point in the history
Closes #905

---------

Co-authored-by: Ogun Babacan <[email protected]>
Co-authored-by: Erbil Nas <[email protected]>
  • Loading branch information
3 people authored Dec 23, 2024
1 parent 23a3513 commit 8beac07
Show file tree
Hide file tree
Showing 21 changed files with 2,726 additions and 295 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ permissions:

jobs:
verify:
uses: trendyol/baklava/.github/workflows/verify.yml@next
uses: ./.github/workflows/verify.yml
secrets: inherit
chromatic:
uses: trendyol/baklava/.github/workflows/publish-chromatic.yml@next
uses: ./.github/workflows/publish-chromatic.yml
needs: verify
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
with:
node-version: 18
cache: 'npm'
- name: Install Playwright dependencies
run: npx playwright install-deps
- name: Install dependencies
run: npm ci
- name: Install Playwright dependencies
run: npx playwright install && npx playwright install-deps
- name: Run linter check
run: npm run lint
- name: Run tests
Expand Down
11 changes: 8 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"cssVariables.lookupFiles": [
"**/src/themes/default.css",
]
"cssVariables.lookupFiles": ["**/src/themes/default.css"],
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.organizeImports": "always",
"source.sortImports": "always",
"source.removeUnusedImports": "always",
"source.addMissingImports": "always"
}
}
Loading

0 comments on commit 8beac07

Please sign in to comment.