Skip to content

Fix deprecated method app.listen(PORT) #70

Fix deprecated method app.listen(PORT)

Fix deprecated method app.listen(PORT) #70

Workflow file for this run

name: CI workflow
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Clean node_modules
run: npm install rimraf -g && rimraf node_modules
- name: Install Dependencies
run: npm install socket.io & npm install --ignore-scripts
- name: Test
run: npm run test