chore(deps-dev): bump msw from 2.4.3 to 2.7.0 #198
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: iso-websocket | |
env: | |
CI: true | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'packages/iso-websocket/**' | |
- .github/workflows/iso-websocket.yml | |
- pnpm-lock.yaml | |
pull_request: | |
paths: | |
- 'packages/iso-websocket/**' | |
- .github/workflows/iso-websocket.yml | |
- pnpm-lock.yaml | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm run build | |
- run: pnpm -r --filter iso-websocket run lint | |
- run: pnpm -r --filter iso-websocket run test | |
- run: pnpm -r --filter iso-websocket exec depcheck |