[OGUI-1612] Keep grpc call in workflowtemplate.service independently and pass informative message to user #3039
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: Control | |
| on: | |
| pull_request: | |
| paths: | |
| - 'Control/**' | |
| - '.github/workflows/control.yml' | |
| push: | |
| branches: | |
| - 'main' | |
| - 'dev' | |
| jobs: | |
| test: | |
| name: Tests on macos-latest | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| - run: (cd Control; npm ci ) | |
| - run: (cd Control; npm test ) | |
| coverage: | |
| name: Tests & coverage on ubuntu-latest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| - run: (cd Control; npm ci ) | |
| - run: (cd Control; npm run coverage ) | |
| - run: (cd Control; ./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov) | |
| - name: Send codecov report for Control | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: control | |
| fail_ci_if_error: true |