Fix lint error #511
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: NodeJS Test | |
| on: [push, pull_request] | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| version: [20, 22, 24] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: bin/setup-rabbit.sh | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| - run: npm ci | |
| - run: npm i stomp-js/tcp-wrapper --save-dev | |
| - run: npm run build | |
| - run: npm run test | |
| - run: CONN_MODE=tcp npm run test |