diff --git a/.github/actions/framework/action.yml b/.github/actions/framework/action.yml index f275fe3cf..cfa07b6a1 100644 --- a/.github/actions/framework/action.yml +++ b/.github/actions/framework/action.yml @@ -44,6 +44,12 @@ runs: shell: bash run: ${{ inputs.install }} + - name: Install dependencies + shell: bash + run: | + npm ci + working-directory: my-app + - name: Install SDK shell: bash run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ac9c9e601..8463543aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,7 +49,7 @@ jobs: with: node: ${{ env.NODE_VERSION }} tests: 'true' - browserstack-accesskey: ${{ secrets.BROWSERSTACK_ACCESSKEY }} + browserstack-access-key: ${{ secrets.BROWSERSTACK_ACCESSKEY }} browserstack-username: ${{ secrets.BROWSERSTACK_USERNAME }} - name: Save build artifacts