chore(deps): bump socket.io from 4.1.3 to 4.6.2 in /apps/dsb-message-broker #584
This file contains 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: Install and build | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
cancel-previous: | |
name: 'Cancel Previous Runs' | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
install-and-build: | |
runs-on: ubuntu-latest | |
services: | |
jetstream: | |
image: piotrkosinski/nats-jetstream:2.2.6 | |
ports: | |
- 4222:4222 | |
env: | |
NATS_JS_URL: 'nats://localhost:4222' | |
needs: cancel-previous | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '14' | |
- name: Check dependency versions | |
run: node common/scripts/install-run-rush.js check | |
- name: Install application | |
run: | | |
node common/scripts/install-run-rush.js update | |
- name: Build application | |
run: node common/scripts/install-run-rush.js rebuild --verbose | |
- name: Run e2e tests | |
env: | |
JWT_SECRET: "secret" | |
PRIVATE_KEY: ${{ secrets.MB_PRIVATE_KEY }} | |
MB_DID: ${{ secrets.MB_DID }} | |
run: node common/scripts/install-run-rush.js test:e2e --verbose |