Merge pull request #344 from Picovoice/dependabot/npm_and_yarn/bindin… #20
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'binding/react/**' | |
- '!binding/react/README.md' | |
- 'lib/common/**' | |
- 'lib/wasm/**' | |
- 'resources/audio_samples/**' | |
- '.github/workflows/react.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'binding/react/**' | |
- '!binding/react/README.md' | |
- 'lib/common/**' | |
- 'lib/wasm/**' | |
- 'resources/audio_samples/**' | |
- '.github/workflows/react.yml' | |
defaults: | |
run: | |
working-directory: binding/react | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 Web SDK | |
run: yarn && yarn copywasm && yarn build | |
working-directory: binding/web | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Set up test | |
run: yarn setup-test | |
- name: Run test | |
run: yarn test --env ACCESS_KEY=${{secrets.PV_VALID_ACCESS_KEY}} |