Skip to content

Commit

Permalink
Revert "feat: allow node_modules set up to fail" (#63)
Browse files Browse the repository at this point in the history
Reverts #59

Bizarrely, this appears to be causing issues with `trunk check` - I
don't understand how
  • Loading branch information
sxlijin committed Mar 29, 2023
1 parent aaaa7e4 commit a88abc2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions action.yaml
Expand Up @@ -134,12 +134,10 @@ runs:
uses: pnpm/action-setup@v2
with:
version: latest
continue-on-error: true

- name: Install Node dependencies
if: steps.detect.outputs.package_manager
uses: actions/setup-node@v3
continue-on-error: true

#- name: Cache node_modules
# uses: actions/cache@v3
Expand All @@ -151,13 +149,11 @@ runs:
if: steps.detect.outputs.package_manager
shell: bash
run: ${{ steps.detect.outputs.install_cmd }}
continue-on-error: true

- name: Post-init steps
if: inputs.post-init
shell: bash
run: ${{ inputs.post-init }}
continue-on-error: true

- name: Determine check mode
shell: bash
Expand Down

0 comments on commit a88abc2

Please sign in to comment.