hoverkraft-tech / ci-github-nodejs

Opinionated Github actions and workflows for continuous integration in NodeJs context
MIT License
0 stars 0 forks source link

workaround until will be merged: https://github.com/actions/runner/pull/1684 #76

Open github-actions[bot] opened 5 months ago

github-actions[bot] commented 5 months ago

https://github.com/hoverkraft-tech/ci-github-nodejs/blob/b9f3275fbcc72b01e43cd7c41986b230b838536d/actions/setup-node/action.yml#L70


    - shell: bash
      run: ${{ steps.prepare-variables.outputs.install-command }}

    - if: inputs.dependencies-cache != ''
      uses: ./self-setup-node-action/dependencies-cache
      with:
        dependencies: ${{ inputs.dependencies-cache }}

    # FIXME: workaround until will be merged: https://github.com/actions/runner/pull/1684
    - shell: bash
      if: always()
      run: |
        rm -fr ./self-setup-node-action

Waiting for https://github.com/actions/runner/pull/1684 to be merged