Skip to content

chore: bump socket.io-parser from 4.2.6 to 4.2.7 #224

chore: bump socket.io-parser from 4.2.6 to 4.2.7

chore: bump socket.io-parser from 4.2.6 to 4.2.7 #224

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Format check
run: npx prettier --check "**/*.{js,jsx,json,md}"
- name: Build
run: npm run build
- name: Percy Snapshot
run: npx --yes @percy/cli snapshot public/
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}