Skip to content

Commit 2daba85

Browse files
authored
Merge branch 'develop' into feat/collapse-root-sidebar-items
2 parents 40c9d1e + c5ec510 commit 2daba85

File tree

9 files changed

+1773
-1976
lines changed

9 files changed

+1773
-1976
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: npm # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
open-pull-requests-limit: 10
11+
schedule:
12+
interval: "weekly"
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
open-pull-requests-limit: 10
16+
schedule:
17+
interval: monthly

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
matrix:
1414
node-version: ['lts/*']
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Setup Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v3
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
cache: 'npm'
@@ -38,9 +38,9 @@ jobs:
3838
node-version: ['lts/*']
3939
os: ['macos-latest', 'ubuntu-latest', 'windows-latest']
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
- name: Setup Node.js ${{ matrix.node-version }}
43-
uses: actions/setup-node@v2
43+
uses: actions/setup-node@v3
4444
with:
4545
node-version: ${{ matrix.node-version }}
4646
cache: 'npm'
@@ -59,9 +59,9 @@ jobs:
5959
matrix:
6060
node-version: ['lts/*']
6161
steps:
62-
- uses: actions/checkout@v2
62+
- uses: actions/checkout@v3
6363
- name: Setup Node.js ${{ matrix.node-version }}
64-
uses: actions/setup-node@v2
64+
uses: actions/setup-node@v3
6565
with:
6666
node-version: ${{ matrix.node-version }}
6767
cache: 'npm'
@@ -74,7 +74,7 @@ jobs:
7474
- name: E2E Tests (Playwright)
7575
run: npm run test:e2e
7676
- name: Store artifacts
77-
uses: actions/upload-artifact@v2
77+
uses: actions/upload-artifact@v3
7878
if: failure()
7979
with:
8080
name: ${{ matrix.os }}-${{ matrix.node-version }}-artifacts

0 commit comments

Comments
 (0)