aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/github/setup/action.yml
blob: ee1b4f8df1f285002871dedd93590286792d8bd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "Setup and install"
description: "Common setup steps for Actions"

runs:
  using: composite
  steps:
    - uses: pnpm/action-setup@v2
    - uses: actions/setup-node@v4
      with:
        node-version: 22
        cache: "pnpm"
        registry-url: https://registry.npmjs.org

    - shell: bash
      run: pnpm add -g turbo

    - shell: bash
      run: pnpm install
      env:
        PUPPETEER_SKIP_DOWNLOAD: "true"