diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b0c54b4100..27d0198810 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -189,6 +189,29 @@ jobs: path: test-apps/e2e/**/test-results/**/trace.zip retention-days: 1 + cli: + timeout-minutes: 60 + needs: [changes, build, typescript, unit_front] + name: 'cli' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Monorepo install + uses: ./.github/actions/yarn-nm-install + + - name: Monorepo build + uses: ./.github/actions/run-build + + - name: Run CLI tests + run: yarn test:cli + api_ce_pg: if: needs.changes.outputs.backend == 'true' runs-on: ubuntu-latest