v3.0 dotnet, node and web #174
Workflow file for this run
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: [ main ] | |
| paths: | |
| - 'binding/web/**' | |
| - '!binding/web/README.md' | |
| - 'lib/wasm/**' | |
| - '.github/workflows/web.yml' | |
| - 'resources/.test/**' | |
| pull_request: | |
| branches: [ main, 'v[0-9]+.[0-9]+' ] | |
| paths: | |
| - 'binding/web/**' | |
| - '!binding/web/README.md' | |
| - 'lib/wasm/**' | |
| - '.github/workflows/web.yml' | |
| - 'resources/.test/**' | |
| defaults: | |
| run: | |
| working-directory: binding/web | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| device: [ cpu, cpu:1 ] | |
| node-version: [ 18.x, 20.x, 22.x, 24.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 }} | |
| # ************** REMOVE AFTER RELEASE ******************** | |
| - name: Build Web SDK | |
| run: yarn && yarn copywasm && yarn build | |
| working-directory: binding/web | |
| # ******************************************************** | |
| - 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}},DEVICE=${{matrix.device}} |