Skip to content

Commit d56c516

Browse files
authored
Merge branch 'main' into v1/bugfix/combobox-select-on-space
2 parents e5cd7b4 + 170662a commit d56c516

File tree

15 files changed

+1940
-2004
lines changed

15 files changed

+1940
-2004
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@ name: Tests
22

33
# Controls when the workflow will run
44
on:
5-
# Triggers the workflow on push or pull request events but only for the dev branch
5+
# Triggers the workflow on push or pull request events but only for the main and release branches
6+
push:
7+
branches:
8+
- main
9+
- release/*
10+
11+
# Triggers the workflow on push or pull request events but only for the main and release branches
612
pull_request:
7-
branches-ignore:
8-
- production
13+
branches:
14+
- main
15+
- release/*
916

1017
# Allows you to run this workflow manually from the Actions tab
1118
workflow_dispatch:

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default [
4343
languageOptions: {
4444
parserOptions: {
4545
project: './tsconfig.json',
46-
tsconfigRootDir: './',
46+
tsconfigRootDir: __dirname,
4747
},
4848
globals: globals.browser,
4949
},

0 commit comments

Comments
 (0)