fixes bug that would prevent unlock of nodes during physics simulation #357
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| jobs: | |
| ci-server: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22' | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Install | |
| run: | | |
| cd nakar-server | |
| npm ci | |
| - name: Build | |
| run: | | |
| cd nakar-server | |
| npm run build | |
| docker buildx ls | |
| npm run build:docker | |
| - name: Analysis | |
| run: | | |
| cd nakar-server | |
| npm run lint | |
| ci-client-web: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22' | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Install | |
| run: | | |
| cd nakar-client-web | |
| npm ci | |
| - name: Build | |
| run: | | |
| cd nakar-client-web | |
| npm run build | |
| docker buildx ls | |
| npm run build:docker | |
| - name: Analysis | |
| run: | | |
| cd nakar-client-web | |
| npm run lint | |
| ci-nakar-db-pole: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Build | |
| run: | | |
| cd nakar-db-pole | |
| docker buildx ls | |
| npm run build:docker | |
| ci-nakar-db-examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Build | |
| run: | | |
| cd nakar-db-examples | |
| docker buildx ls | |
| npm run build:docker | |
| # ci-client-vision: | |
| # runs-on: macos-latest | |
| # steps: | |
| # - name: Checkout Repository | |
| # uses: actions/checkout@v3 | |
| # - name: Set up Xcode | |
| # run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
| # - name: Build | |
| # run: | | |
| # cd nakar-client-vision | |
| # xcodebuild -scheme "nakar-client-vision" -sdk xros -skipPackagePluginValidation CODE_SIGNING_ALLOWED="NO" |