Update dependency mqtt to v4.3.8 #333
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: ci | |
| # https://github.com/actions/starter-workflows/blob/master/ci/npm-publish.yml | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - master | |
| # https://github.com/actions/starter-workflows/issues/158 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-20.04 | |
| strategy: | |
| matrix: | |
| node-version: [12.x, 14.x, 16.x, 18.x] | |
| env: | |
| NODE_ENV: ci | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: yarn && yarn run ci | |
| - run: yarn run test | |
| - name: check process start | |
| working-directory: ./examples/websocket-chat/game-server | |
| run: node ci-test.js | |
| - name: check nestjs example start | |
| working-directory: ./examples/websocket-chat-ts-run/game-server | |
| run: node ci-test.js | |