Fix imports by moving util #128
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: 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. |