Skip to content

Bump ws from 8.16.0 to 8.17.1 #698

Bump ws from 8.16.0 to 8.17.1

Bump ws from 8.16.0 to 8.17.1 #698

Workflow file for this run

name: test
on: push
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16.x"
- name: install deps
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run test:lint
- name: Compile
run: npm run compile
e2e:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16.x"
- name: install deps
run: npm ci
- name: start app
run: npm start &
- name: test
run: npm run test:e2e