Skip to content

build(deps): Bump ws from 6.2.2 to 6.2.3 in /example #91

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 #91

Workflow file for this run

name: "Pull Request Workflow"
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "yarn"
- name: Install Node.js Dependencies
run: yarn install --frozen-lockfile
- name: Install Example Dependencies
run: yarn --cwd example install --frozen-lockfile
- name: Run ESLint
run: yarn lint
- name: Run Prettier
run: yarn prettier:check