/
githubmirror
/
react-hook-form
Обзор
Документация
Войти
/
githubmirror
/
react-hook-form
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/actions/install-dependencies/action.yml
19 строк
472 B
Bill
🤧 fix FieldArray component export (#13596)
14 июл 2026, 13:26
Не верифицирован
14 июл 2026, 13:26
2f7c1c5
Код
Авторство
О чём код?
name: Install Dependencies description: This is a composite GitHub Action that sets up pnpm, node and installs the project's dependencies. runs: using: composite steps: - name: Install pnpm uses: pnpm/action-setup@v6 with: version: 11.7.0 - name: Setup Node version to 22 uses: actions/setup-node@v6 with: node-version: 22 cache: pnpm - name: Install Dependencies run: pnpm install shell: bash