/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/coverage-windows.yml
104 строки
3 KB
dependabot[bot]
meta: bump actions/setup-python from 6.3.0 to 7.0.0
03 авг 2026, 22:00
Не верифицирован
03 авг 2026, 22:00
ffa6240
Код
Авторство
О чём код?
name: Coverage Windows on: pull_request: types: [opened, synchronize, reopened, ready_for_review] paths-ignore: - '**.md' - '**.nix' - eslint.config.mjs - '**/eslint.config_partial.mjs' - android-configure - android-configure.py - android-patches/** - benchmarks/** - doc/** - pyproject.yml - tsconfig.json - test/internet/** - tools/actions/** - tools/bootstrap/** - tools/dep_updaters/** - tools/doc/** - tools/eslint-rules/** - tools/eslint/** - tools/lint-md/** - typings/** - .** - '!.github/workflows/coverage-windows.yml' push: branches: - main paths-ignore: - '**.md' - '**.nix' - eslint.config.mjs - '**/eslint.config_partial.mjs' - android-configure - android-configure.py - android-patches/** - benchmarks/** - doc/** - pyproject.yml - tsconfig.json - test/internet/** - tools/actions/** - tools/bootstrap/** - tools/dep_updaters/** - tools/doc/** - tools/eslint-rules/** - tools/eslint/** - tools/lint-md/** - typings/** - .** - '!.github/workflows/coverage-windows.yml' concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true env: PYTHON_VERSION: '3.14' FLAKY_TESTS: keep_retrying RUSTC_VERSION: '1.86' permissions: contents: read jobs: coverage-windows: if: github.event.pull_request.draft == false runs-on: windows-2025 steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 with: python-version: ${{ env.PYTHON_VERSION }} allow-prereleases: true - name: Install deps run: choco install nasm - name: Install Rust ${{ env.RUSTC_VERSION }} run: | rustup override set "$RUSTC_VERSION" rustup --version - name: Build run: ./vcbuild.bat clang-cl v8temporal # TODO(bcoe): investigate tests that fail with coverage enabled # on Windows. - name: Test run: ./vcbuild.bat noprojgen nobuild test-ci-js; node -e 'process.exit(0)' env: NODE_V8_COVERAGE: ./coverage/tmp - name: Report run: npx c8 report env: NODE_OPTIONS: --max-old-space-size=8192 - name: Clean tmp run: npx rimraf ./coverage/tmp - name: Upload uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 with: directory: ./coverage