docs(prd): add edition isolation + source vs deployed build mode sect… #4570
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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: karrio-tests | |
| on: [push] | |
| jobs: | |
| sdk-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Checkout submodules | |
| run: | | |
| git submodule update --init community | |
| - name: Run Tests | |
| run: | | |
| ./bin/setup-sdk-env -v && | |
| ./bin/cli plugins list && | |
| ./bin/run-sdk-typecheck -v && | |
| ./bin/run-sdk-tests -v | |
| server-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Checkout submodules | |
| run: | | |
| git submodule update --init community | |
| - name: Run Tests | |
| env: | |
| ENABLE_ALL_PLUGINS_BY_DEFAULT: true | |
| run: | | |
| ./bin/setup-server-env -v && | |
| ./bin/cli plugins list && | |
| ./bin/migrate && | |
| ./bin/run-server-tests -v | |
| dashbaord-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Checkout submodules | |
| run: | | |
| git submodule update --init community | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22.x | |
| - name: Install | |
| run: | | |
| npm install -g corepack | |
| mkdir -p ~/.volta/bin | |
| corepack enable --install-directory ~/.volta/bin | |
| - name: Test Build | |
| run: | | |
| npm ci | |
| npm run build -w apps/dashboard |