Skip to content

chore: bump ws from 7.5.9 to 7.5.10 (#97) #25

chore: bump ws from 7.5.9 to 7.5.10 (#97)

chore: bump ws from 7.5.9 to 7.5.10 (#97) #25

Workflow file for this run

name: Static checks
on: [ pull_request, push ]
jobs:
ci-static-checks:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout PR
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup NodeJS
uses: actions/[email protected]
with:
node-version-file: 'package.json'
- name: Install dependencies
run: npm ci
- name: Build code
run: npm run build
- name: Run linters
run: npm run lint
- name: Run unit tests
run: npm run test