diff --git a/.github/actions/framework/action.yml b/.github/actions/framework/action.yml index 0f3cec383..4b76d33de 100644 --- a/.github/actions/framework/action.yml +++ b/.github/actions/framework/action.yml @@ -35,10 +35,6 @@ runs: path: . key: ${{ inputs.cache }} - - name: Relocate build artifacts - shell: bash - run: mv dist spa-js - - name: Create application shell: bash run: ${{ inputs.install }} @@ -46,7 +42,7 @@ runs: - name: Install SDK shell: bash run: | - npm link '../spa-js' + npm link '../' ${{ inputs.content }} ${{ inputs.import }} working-directory: my-app diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 73ce3ecd3..903d4dc91 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,10 @@ on: permissions: contents: read +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} + env: NODE_VERSION: 18 CACHE_KEY: '${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}'