Merge pull request #814 from Picovoice/dependabot/npm_and_yarn/sdk/an… #243
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: Angular | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'sdk/angular/**' | |
- '!sdk/angular/README.md' | |
- 'resources/porcupine' | |
- 'resources/rhino' | |
- '.github/workflows/angular.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'sdk/angular/**' | |
- '!sdk/angular/README.md' | |
- 'resources/porcupine' | |
- 'resources/rhino' | |
- '.github/workflows/angular.yml' | |
defaults: | |
run: | |
working-directory: sdk/angular | |
jobs: | |
build: | |
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 --force | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build picovoice-angular | |
- name: Lint | |
run: yarn lint | |
- name: Setup test | |
run: yarn setup-test | |
- name: Run test | |
run: yarn test --env ACCESS_KEY=${{secrets.PV_VALID_ACCESS_KEY}} |