Skip to content

Commit

Permalink
wip: add description
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrebb committed Jan 16, 2024
1 parent 72ac2d0 commit b9c21e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ description: "Sets up Node, npm caching, and installs dependencies"

inputs:
WORKSPACE_ROOT:
description: "The workspace root."
required: true

runs:
Expand All @@ -13,9 +14,9 @@ runs:
with:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"
cache-dependency-path: ${{ steps.base.outputs.WORKSPACE_ROOT }}/package-lock.json
cache-dependency-path: ${{ inputs.WORKSPACE_ROOT }}/package-lock.json

- name: ↧ Install
shell: bash
working-directory: ${{ steps.base.outputs.WORKSPACE_ROOT }}
working-directory: ${{ inputs.WORKSPACE_ROOT }}
run: npm ci

0 comments on commit b9c21e3

Please sign in to comment.