|
| 1 | +name: "Setup Node.js, PNPM, and install dependencies" |
| 2 | + |
| 3 | +inputs: |
| 4 | + node-version: |
| 5 | + description: "Node.js version to use" |
| 6 | + required: false |
| 7 | + default: 20.12.2 |
| 8 | + pnpm-version: |
| 9 | + description: "PNPM version to use" |
| 10 | + required: false |
| 11 | + default: 9.14.2 |
| 12 | + skip-install: |
| 13 | + description: "Skip 'pnpm install'" |
| 14 | + required: false |
| 15 | + default: false |
| 16 | + install-args: |
| 17 | + description: "Additional args supplied to 'pnpm install'" |
| 18 | + required: false |
| 19 | + working-directory: |
| 20 | + description: "Working directory to run the command in" |
| 21 | + required: false |
| 22 | + default: ./typescript |
| 23 | + |
| 24 | +runs: |
| 25 | + using: "composite" |
| 26 | + |
| 27 | + steps: |
| 28 | + - name: Log inputs |
| 29 | + shell: bash |
| 30 | + run: | |
| 31 | + echo "Node.js version: ${{ inputs.node-version }}" |
| 32 | + echo "PNPM version: ${{ inputs.pnpm-version }}" |
| 33 | + echo "Skip install: ${{ inputs.skip-install }}" |
| 34 | + echo "Install args: ${{ inputs.install-args }}" |
| 35 | + echo "Working directory: ${{ inputs.working-directory }}" |
| 36 | + - uses: actions/checkout@v4 |
| 37 | + |
| 38 | + - uses: pnpm/action-setup@v4 |
| 39 | + with: |
| 40 | + version: ${{ inputs.pnpm-version }} |
| 41 | + |
| 42 | + - name: Set up Node.js |
| 43 | + uses: actions/setup-node@v4 |
| 44 | + with: |
| 45 | + node-version: ${{ inputs.node-version }} |
| 46 | + |
| 47 | + - id: pnpm-config |
| 48 | + if: inputs.skip-install == 'false' |
| 49 | + shell: bash |
| 50 | + run: | |
| 51 | + echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT |
| 52 | +
|
| 53 | + - id: cache-rotation |
| 54 | + shell: bash |
| 55 | + if: inputs.skip-install == 'false' |
| 56 | + run: | |
| 57 | + echo "YEAR_MONTH=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT |
| 58 | +
|
| 59 | + - uses: actions/cache@v3 |
| 60 | + if: inputs.skip-install == 'false' |
| 61 | + with: |
| 62 | + path: ${{ steps.pnpm-config.outputs.STORE_PATH }} |
| 63 | + key: ${{ runner.os }}-pnpm-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-${{ hashFiles('**/pnpm-lock.yaml') }} |
| 64 | + restore-keys: | |
| 65 | + ${{ runner.os }}-pnpm-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}- |
| 66 | +
|
| 67 | + - name: Install dependencies |
| 68 | + shell: bash |
| 69 | + if: inputs.skip-install == 'false' |
| 70 | + working-directory: ${{ inputs.working-directory }} |
| 71 | + run: pnpm install --frozen-lockfile --prefer-offline ${{ inputs.install-args }} |
0 commit comments