Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Bump ws from 7.5.9 to 7.5.10 #65

Bump ws from 7.5.9 to 7.5.10

Bump ws from 7.5.9 to 7.5.10 #65

Workflow file for this run

name: 'checks'
on:
pull_request:
push:
branches:
- main
env:
# reduces noise from npm post-install scripts
DISABLE_OPENCOLLECTIVE: true
OPEN_SOURCE_CONTRIBUTOR: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- run: npm ci
- run: npm run lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- run: npm ci
- run: npm run typecheck
test:
name: Test on ${{ matrix.os }} using Node.js v20
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- run: npm ci
- run: npm test -- --coverage