mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:43:25 +00:00
22 lines
407 B
YAML
22 lines
407 B
YAML
name: "Setup and install"
|
|
description: "Common setup steps for Actions"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: pnpm/action-setup@v3
|
|
name: Install pnpm
|
|
with:
|
|
version: 9
|
|
run_install: false
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 21
|
|
cache: "pnpm"
|
|
|
|
- shell: bash
|
|
run: pnpm add -g turbo
|
|
|
|
- shell: bash
|
|
run: pnpm install
|