feat(client): try to reconnect to app websocket if socket is closed (… #257
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bundling Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
node: [18, 20] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install NPM packages | |
run: npm ci | |
- name: Build client library | |
run: npm run build | |
- name: Ensure Node.js can load the built client library | |
run: node lib/index.js | |
- name: Create package tarball | |
run: npm pack | |
- name: Upload package tarball | |
uses: actions/[email protected] | |
with: | |
name: client-${{ matrix.node }}.tgz | |
path: holochain-client-*.tgz | |
overwrite: true | |
- name: Setup tmate session if a previous step failed | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 | |
timeout-minutes: 10 | |
bundle-test: | |
needs: build | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
node: [18, 20] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Download package tarball | |
uses: actions/[email protected] | |
with: | |
name: client-${{ matrix.node }}.tgz | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Create a Vite project from template | |
run: npm create vite@latest test-app -- --template vanilla-ts | |
- name: Add JS client to project | |
run: | | |
cd test-app | |
npm i $(ls ../holochain-client-*.tgz) | |
- name: Write client import to main.js | |
run: | | |
cd test-app | |
echo 'import * as client from "@holochain/client";' > main.js | |
- name: Bundle app for production | |
run: | | |
cd test-app | |
npm run build | |
- name: Setup tmate session if a previous step failed | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 | |
timeout-minutes: 10 |