/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/actions/setup-node/action.yml
23 строки
735 B
Rob Hogan
Apply prettier to .yml files + consistent quote style (#57286)
19 июн 2026, 17:03
19 июн 2026, 17:03
738839c
Код
Авторство
О чём код?
name: Setup node.js description: 'Set up your GitHub Actions workflow with a specific version of node.js' inputs: node-version: description: 'The node.js version to use' required: false default: '22.14.0' registry-url: description: | Optional npm registry URL passed through to actions/setup-node. Set on jobs that publish to npm so setup-node writes a `.npmrc` configured to pick up the OIDC-minted token from npm Trusted Publishing. required: false default: '' runs: using: 'composite' steps: - name: Setup node.js uses: actions/setup-node@v6 with: node-version: ${{ inputs.node-version }} cache: yarn registry-url: ${{ inputs.registry-url }}