mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
fcc183c994
Treat warnings as errors for non-deps code on Linux and macOS workflows. Signed-off-by: Richard Lau <riclau@uk.ibm.com> PR-URL: https://github.com/nodejs/node/pull/33357 Refs: https://github.com/nodejs/node/pull/32685 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
24 lines
569 B
YAML
24 lines
569 B
YAML
name: test-macOS
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
PYTHON_VERSION: 3.8
|
|
FLAKY_TESTS: dontcare
|
|
|
|
jobs:
|
|
test-macOS:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
- name: Environment Information
|
|
run: npx envinfo
|
|
- name: Build
|
|
run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn"
|
|
- name: Test
|
|
run: make run-ci -j8 V=1 TEST_CI_ARGS="-p dots"
|