mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
Signed-off-by: Gabriela Gutierrez <gabigutierrez@google.com> PR-URL: https://github.com/nodejs/node/pull/46820 Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
name: Coverage Windows
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
paths-ignore:
|
|
- '**.md'
|
|
- benchmark/**
|
|
- deps/**
|
|
- doc/**
|
|
- tools/**
|
|
- .github/**
|
|
- '!.github/workflows/coverage-windows.yml'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
- benchmark/**
|
|
- deps/**
|
|
- doc/**
|
|
- tools/**
|
|
- .github/**
|
|
- '!.github/workflows/coverage-windows.yml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
PYTHON_VERSION: '3.11'
|
|
FLAKY_TESTS: keep_retrying
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
coverage-windows:
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: windows-2022
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
|
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
|
|
with:
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
- name: Install deps
|
|
run: choco install nasm
|
|
- name: Environment Information
|
|
run: npx envinfo
|
|
- name: Build
|
|
run: ./vcbuild.bat
|
|
# TODO(bcoe): investigate tests that fail with coverage enabled
|
|
# on Windows.
|
|
- name: Test
|
|
run: ./vcbuild.bat 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@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1
|
|
with:
|
|
directory: ./coverage
|