Skip to content

Bump ws from 8.2.3 to 8.17.1 #89

Bump ws from 8.2.3 to 8.17.1

Bump ws from 8.2.3 to 8.17.1 #89

Workflow file for this run

name: Build and Lint
on: [push, pull_request]
jobs:
server:
runs-on: ubuntu-latest
strategy:
matrix:
# the Node.js versions to build on
node-version: [14.x, 15.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint the project
run: npm run lint
- name: Build the project
run: npm run build
env:
CI: true
client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.16.2'
- name: build golang client
run: cd go-client && go build