Skip to content

build(deps): bump ws from 6.2.2 to 6.2.3 in /example #5

build(deps): bump ws from 6.2.2 to 6.2.3 in /example

build(deps): bump ws from 6.2.2 to 6.2.3 in /example #5

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
- name: TsCheck
run: yarn tscheck
- name: Check formatting
run: yarn format-check
- name: Test
run: yarn test