Skip to content

feat: add support for imwss2 #130

feat: add support for imwss2

feat: add support for imwss2 #130

Workflow file for this run

name: Build and deploy SDK examples
on:
push:
branches:
- main
jobs:
sdk-examples:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.10.0]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8.14.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: pnpm run bootstrap
- run: pnpm --filter "!colony-js" run build
- run: pnpm --filter "sdk" run build-examples
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages # The branch the action should deploy to.
clean: true
folder: packages/sdk/examples/browser/web # The folder the action should deploy.