/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/actions/test-js/action.yml
26 строк
728 B
Rob Hogan
Apply prettier to .yml files + consistent quote style (#57286)
19 июн 2026, 17:03
19 июн 2026, 17:03
738839c
Код
Авторство
О чём код?
name: test-js description: Runs all the JS tests in the codebase inputs: node-version: description: 'The node.js version to use' required: false default: '22' runs: using: composite steps: - name: Setup node.js uses: ./.github/actions/setup-node with: node-version: ${{ inputs.node-version }} - name: Yarn install uses: ./.github/actions/yarn-install - name: Run Tests - JavaScript Tests shell: bash run: node ./scripts/run-ci-javascript-tests.js --maxWorkers 2 - name: Upload test results if: ${{ always() }} uses: actions/upload-artifact@v6 with: name: test-js-results compression-level: 1 path: ./reports/junit