Skip to content

Bump ws from 8.5.0 to 8.17.1 #33

Bump ws from 8.5.0 to 8.17.1

Bump ws from 8.5.0 to 8.17.1 #33

Workflow file for this run

name: Code Quality
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: "npm"
- run: npm ci
- run: npx prettier --check .
# vim: set et ts=2 sw=2: