gitbutler/.github/actions/init-env-node/action.yaml
2024-01-19 18:37:53 +01:00

39 lines
1.0 KiB
YAML

name: init-node
description: prepare runner for node related tasks
runs:
using: "composite"
steps:
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8.6
run_install: false
- uses: actions/setup-node@v3
name: Setup node
with:
node-version: "18"
cache: pnpm
- name: Get pnpm store directory
shell: bash
run: echo 'STORE_PATH=$(pnpm store path --silent)' >> $GITHUB_ENV
- uses: actions/cache@v3
if: runner.name != 'ScottsMacStudio' # internet in berlin is very slow
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: github-client-${{ runner.os }}-pnpm-store
- name: Git config
shell: bash
run: |
# This seems the only reliable way of forcing https for forked packages
git config --global url."https://".insteadOf git://
git config --global url."https://github.com/".insteadOf git@github.com:
- name: Install dependencies
shell: bash
run: pnpm install