/
githubmirror
/
workgpt
Обзор
Документация
Войти
/
githubmirror
/
workgpt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/actions/setup/action.yml
31 строка
595 B
Alex MacCaw
fix actions
20 май 2023, 20:56
20 май 2023, 20:56
1d72045
Код
Авторство
О чём код?
name: Setup description: Setup the environment inputs: node-version: description: The version of node.js required: false default: '18' runs: using: composite steps: - name: Install pnpm uses: pnpm/action-setup@v2 with: run_install: false - name: Setup node uses: actions/setup-node@v3 with: node-version: ${{ inputs.node-version }} cache: pnpm registry-url: 'https://registry.npmjs.org' - name: Setup ni run: npm i -g @antfu/ni shell: bash - name: Install run: ni shell: bash