Currently they all run `npx envinfo` without pinning the version. This can be a supply-chain risk. Signed-off-by: Joyee Cheung <joyeec9h3@gmail.com> PR-URL: https://github.com/nodejs/node/pull/64117 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
105 lines
2.8 KiB
YAML
105 lines
2.8 KiB
YAML
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
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
coverage-windows:
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: windows-2025
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.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: Environment Information
|
|
run: npx envinfo@7.21.0
|
|
- 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@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
|
|
with:
|
|
directory: ./coverage
|