Skip to content

build(deps-dev): bump ws from 7.5.9 to 7.5.10 #253

build(deps-dev): bump ws from 7.5.9 to 7.5.10

build(deps-dev): bump ws from 7.5.9 to 7.5.10 #253

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm install
- name: Lint
run: npm run lint-ci
- name: Compile
run: npm run build
- name: Unit tests
run: npm run test-unit
- name: End-to-end tests
run: npm run test-e2e