Bump js-yaml from 4.1.0 to 4.1.1 in /binding/web (#832) #288
This file contains hidden or 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: Web | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| paths: | |
| - 'binding/web/**' | |
| - '!binding/web/README.md' | |
| - 'lib/common/**' | |
| - 'lib/wasm/**' | |
| - 'resources/audio_samples/**' | |
| - 'resources/contexts/wasm/**' | |
| - 'resources/.test/**' | |
| - '.github/workflows/web.yml' | |
| pull_request: | |
| branches: [ master, 'v[0-9]+.[0-9]+' ] | |
| paths: | |
| - 'binding/web/**' | |
| - '!binding/web/README.md' | |
| - 'lib/common/**' | |
| - 'lib/wasm/**' | |
| - 'resources/audio_samples/**' | |
| - 'resources/contexts/wasm/**' | |
| - 'resources/.test/**' | |
| - '.github/workflows/web.yml' | |
| defaults: | |
| run: | |
| working-directory: binding/web | |
| 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: Install dependencies | |
| run: yarn install | |
| - name: Copy libs | |
| run: yarn copywasm | |
| - name: Build | |
| run: yarn build | |
| - name: Prepare Test | |
| run: yarn setup-test | |
| - name: Test | |
| run: yarn test --env ACCESS_KEY=${{secrets.PV_VALID_ACCESS_KEY}} |