fix(api): fix vacuum module protocol engine command params + type #23731
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
| # Run tests for step generation | |
| name: 'Step generation test' | |
| on: | |
| pull_request: | |
| paths: | |
| - 'step-generation/**' | |
| - 'shared-data/**' | |
| - 'package.json' | |
| - '.github/workflows/step-generation-test.yaml' | |
| - '.github/actions/js/setup/action.yml' | |
| - '.github/actions/git/resolve-tag/action.yml' | |
| - '.github/actions/environment/complex-variables/action.yml' | |
| - 'vitest.config.*' | |
| push: | |
| paths: | |
| - 'step-generation/**' | |
| - 'shared-data/**' | |
| - 'package.json' | |
| - '.github/workflows/step-generation-test.yaml' | |
| - '.github/actions/js/setup/action.yml' | |
| - '.github/actions/git/resolve-tag/action.yml' | |
| - '.github/actions/environment/complex-variables/action.yml' | |
| - 'vitest.config.*' | |
| branches: | |
| - '*' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.ref_name != 'edge' || github.run_id}}-${{ github.ref_type != 'tag' || github.run_id }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| CI: true | |
| jobs: | |
| js-unit-test: | |
| name: 'step generation unit tests' | |
| runs-on: 'ubuntu-24.04' | |
| timeout-minutes: 20 | |
| steps: | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| - uses: ./.github/actions/js/setup | |
| - name: 'build step-generation package (tsc + vite)' | |
| run: make -C step-generation lib | |
| - name: 'run step generation unit tests' | |
| run: make -C step-generation test-cov | |
| - name: 'Upload coverage report' | |
| uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5 | |
| with: | |
| flags: step-generation | |
| token: ${{ secrets.CODECOV_TOKEN }} |