Skip to content

Bump socket.io from 4.6.1 to 4.7.5 #255

Bump socket.io from 4.6.1 to 4.7.5

Bump socket.io from 4.6.1 to 4.7.5 #255

Workflow file for this run

name: build
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'dist/**'
- 'typings/**'
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
npm ci
env:
CI: true
- name: build
run: |
npm run build
env:
CI: true
- name: test
run: |
npm run github-test
env:
CI: true