Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Integration UnitTest
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_call:

jobs:
macos-browser-test:
Expand All @@ -26,8 +26,9 @@ jobs:
repository: Next2D/player
ref: main
- run: npm install -g npm@latest
- run: npm install
- run: npm ci
- run: npm run test
- run: npm audit --audit-level=high --omit=dev

windows-browser-test:
runs-on: windows-latest
Expand All @@ -44,5 +45,6 @@ jobs:
repository: Next2D/player
ref: main
- run: npm install -g npm@latest
- run: npm install
- run: npm run test
- run: npm ci
- run: npm run test
- run: npm audit --audit-level=high --omit=dev
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Lint
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_call:

jobs:
macos-browser-test:
Expand All @@ -23,7 +23,7 @@ jobs:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm@latest
- run: npm install
- run: npm ci
- run: npm run lint

windows-browser-test:
Expand All @@ -38,5 +38,5 @@ jobs:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm@latest
- run: npm install
- run: npm ci
- run: npm run lint
9 changes: 8 additions & 1 deletion .github/workflows/marketplace-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ permissions:
contents: read

jobs:
lint:
uses: ./.github/workflows/lint.yml

integration:
uses: ./.github/workflows/integration.yml

publish:
needs: [lint, integration]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -21,7 +28,7 @@ jobs:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm@latest
- run: npm install
- run: npm ci
- run: npm run build
- run: npx @vscode/vsce publish
env:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ permissions:
contents: read

jobs:
lint:
uses: ./.github/workflows/lint.yml

integration:
uses: ./.github/workflows/integration.yml

publish:
needs: [lint, integration]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -22,6 +29,6 @@ jobs:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm@latest
- run: npm install
- run: npm ci
- run: npm run build
- run: npm publish
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "next2d-development-mcp",
"displayName": "Next2D Development MCP",
"version": "1.0.2",
"version": "1.1.0",
"description": "MCP server for Next2D application development assistance",
"type": "module",
"author": "Toshiyuki Ienaga <ienaga@next2d.app>",
Expand Down Expand Up @@ -52,7 +52,7 @@
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@types/node": "^25.3.1",
"@types/vscode": "^1.109.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
Expand Down
Loading