Merge pull request #707 from Picovoice/dependabot/npm_and_yarn/demo/a… #163
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 Demos | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'demo/angular/**' | |
- '!demo/angular/README.md' | |
- '.github/workflows/angular-demos.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'demo/angular/**' | |
- '!demo/angular/README.md' | |
- '.github/workflows/angular-demos.yml' | |
defaults: | |
run: | |
working-directory: demo/angular | |
jobs: | |
build-demos: | |
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 --force | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build en | |
- name: Build another language | |
run: yarn build ja |