v3.0 web UI #113
Workflow file for this run
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: React Demos | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'demo/react/**' | |
- '!demo/react/README.md' | |
- '.github/workflows/react-demos.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'demo/react/**' | |
- '!demo/react/README.md' | |
- '.github/workflows/react-demos.yml' | |
defaults: | |
run: | |
working-directory: demo/react | |
jobs: | |
build-demos: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Pre-build dependencies | |
run: npm install yarn | |
- name: Build Local Porcupine Web SDK | |
run: yarn && yarn copywasm && yarn copyppn && yarn build | |
working-directory: resources/porcupine/binding/web | |
- name: Build Local Rhino Web SDK | |
run: yarn && yarn copywasm && yarn build | |
working-directory: resources/rhino/binding/web | |
- name: Build Local SDK | |
run: yarn && yarn build | |
working-directory: sdk/web | |
- name: Build Local React SDK | |
run: yarn && yarn build | |
working-directory: sdk/react | |
- name: Install dependencies | |
run: yarn install | |
- name: Build English | |
run: yarn build en | |
- name: Build Other Language | |
run: yarn build es |