build(deps): bump socket.io-parser and @nestjs/platform-socket.io #119
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: Node.js CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v2 | |
- run: npm ci | |
- run: npx nx workspace-lint | |
- run: npx nx format:check | |
- run: npx nx run-many --target=lint --all | |
- run: npx nx run-many --target=test --all | |
- run: npx nx run dev-server:build | |
- run: npm run build:prod | |
env: | |
CI: true |