Update readme to declare azure metric collection through event hub as… #63
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: "Syntax validation tests" | |
| on: [workflow_dispatch, pull_request] | |
| jobs: | |
| node-syntax-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: # Includes one more job | |
| - dir: 'BlockBlobReader/target/consumer_build' | |
| - dir: 'BlockBlobReader/target/dlqprocessor_build' | |
| - dir: 'BlockBlobReader/target/producer_build' | |
| - dir: 'AppendBlobReader/target/producer_build' | |
| - dir: 'AppendBlobReader/target/appendblob_producer_build' | |
| - dir: 'AppendBlobReader/target/consumer_build' | |
| - dir: 'AppendBlobReader/target/consumer_build' | |
| - dir: 'AppendBlobReader/target/consumer_build' | |
| - dir: 'EventHubs/target/metrics_build' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - working-directory: ${{ matrix.dir }} | |
| run: | | |
| find ./ -name *.js | xargs node -c |