name: "Setup Node" description: | Sets up the node environment for tests, builds, etc. inputs: directory: description: | The directory to run the setup in. required: false default: "site" runs: using: "composite" steps: - name: Install pnpm uses: pnpm/action-setup@v2 with: version: 8 - name: Setup Node uses: buildjet/setup-node@v3 with: node-version: 18.17.0 # See https://github.com/actions/setup-node#caching-global-packages-data cache: "pnpm" cache-dependency-path: ${{ inputs.directory }}/pnpm-lock.yaml - name: Install root node_modules shell: bash run: ./scripts/pnpm_install.sh - name: Install node_modules shell: bash run: ../scripts/pnpm_install.sh working-directory: ${{ inputs.directory }}