build(deps): bump engine.io and socket.io #204
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: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
name: Unit (Client and Server), E2E and Integration Test | |
runs-on: ubuntu-latest | |
env: | |
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} | |
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- run: npm ci | |
- run: npm run build:check | |
- run: npm run test:unit | |
- run: npm run test:e2e | |
- run: npm run test:client | |
- run: npm run test:integration | |
linux: | |
name: "Node ${{ matrix.node }} on Linux: Server Unit and E2E Test" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [10, 12, 14, 18] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- run: npm ci | |
- run: npm run test:unit | |
- run: npm run test:e2e | |
windows: | |
name: "Node ${{ matrix.node }} on Windows: Server Unit and Client Unit Test" | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node: [10, 12, 14, 16, 18] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- run: npm ci | |
- run: npm run test:unit |