#155 型安全、アーキテクトの崩壊部分を改修 #430
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration UnitTest | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| macos-browser-test: | |
| runs-on: macos-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| registry-url: "https://registry.npmjs.org" | |
| - uses: actions/checkout@v6 | |
| with: | |
| repository: Next2D/player | |
| ref: main | |
| - run: npm install -g npm@latest | |
| - run: npm install | |
| - run: npm run test | |
| windows-browser-test: | |
| runs-on: windows-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| registry-url: "https://registry.npmjs.org" | |
| - uses: actions/checkout@v6 | |
| with: | |
| repository: Next2D/player | |
| ref: main | |
| - run: npm install -g npm@latest | |
| - run: npm install | |
| - run: npm run test |