Skip to content

fix(header): add default headers for shared_array_buffer #250

fix(header): add default headers for shared_array_buffer

fix(header): add default headers for shared_array_buffer #250

Workflow file for this run

name: Build on all the platforms
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
env:
webclient: ./js
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [10, 12]
name: ${{ matrix.os }} and node ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
working-directory: ${{env.webclient}}
- name: Build Web client
run: npm run build:release
working-directory: ${{env.webclient}}