build(deps): Bump ws from 6.2.2 to 6.2.3 in /example #91
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |