Skip to content

build(deps): bump ws from 8.8.0 to 8.17.1 in /sample/browser #297

build(deps): bump ws from 8.8.0 to 8.17.1 in /sample/browser

build(deps): bump ws from 8.8.0 to 8.17.1 in /sample/browser #297

Workflow file for this run

name: any-pr
on: [pull_request]
jobs:
build_test:
name: Build test
runs-on: ${{matrix.os}}
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build:release
- run: yarn license:check
- run: yarn test
build_test_wasm_env_interop:
name: Build and Test WASM running cross OS and NodeJS versions
runs-on: ${{matrix.os}}
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build:release
- run: yarn test:wasm
build_test_native_node_env_interop:
name: Build and Test native module running cross OS and NodeJS versions
runs-on: ${{matrix.os}}
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build:release
- run: yarn test:node