Skip to content

Commit d1a7d2f

Browse files
authored
Merge branch 'openimsdk:main' into main
2 parents 2c8c2f5 + 18fb02a commit d1a7d2f

File tree

232 files changed

+3145
-2096
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

232 files changed

+3145
-2096
lines changed

.github/workflows/build-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v2
1919
with:
20-
node-version: '14'
20+
node-version: '18'
2121

2222
- name: Install dependencies
2323
run: npm install

.github/workflows/main-ci.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,23 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Setup Node.js
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: '14'
19+
node-version: 'latest'
2020

2121
- name: Install dependencies
2222
run: npm install
2323

2424
- name: Build documentation
2525
run: npm run build
2626

27-
- name: Run tests
28-
run: npm test # Replace with your test script if different
29-
3027
- name: Lint check
3128
run: npm run lint
29+
continue-on-error: true
3230

3331
- name: Type checking
3432
run: npm run typecheck
33+
continue-on-error: true

.github/workflows/project-progress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
steps:
3232
- uses: alex-page/[email protected]
3333
with:
34-
project: OpenIM-V3.1
34+
project: openim-docs
3535
column: In Progress
36-
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
36+
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ To set up the documentation locally, follow these steps:
5656
```
5757
At this point, you can access the local [http://localhost:3000](http://localhost:3000/) port.
5858

59+
**Version Requirement:**
60+
+ npm >= '10.2.0'
61+
+ node >= '21.1.0',
5962

6063
In the `package.json` file, the `scripts` section provides various commands to help you work with the documentation:
6164

amplify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ frontend:
33
phases:
44
preBuild:
55
commands:
6-
- npm ci
6+
- nvm install 15 && npm ci
77
build:
88
commands:
99
- npm run build

0 commit comments

Comments
 (0)