Skip to content

Bump socket.io-client from 4.6.1 to 4.7.5 #223

Bump socket.io-client from 4.6.1 to 4.7.5

Bump socket.io-client from 4.6.1 to 4.7.5 #223

Workflow file for this run

name: Code Style
on:
push:
branches:
- "5.2"
- "5.3"
- "5.4"
- master
pull_request:
jobs:
ts:
name: TS Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up node.js
uses: actions/setup-node@v3
with:
node-version: "16"
cache: "npm"
- run: npm install
- name: Run prettier
run: |
shopt -s globstar
npx prettier -w ts/**/*.ts
- run: echo "::add-matcher::.github/diff.json"
- name: Show diff
run: |
git checkout -- package-lock.json
git diff --exit-code