diff options
author | Anna Henningsen <anna@addaleax.net> | 2020-04-30 18:50:33 +0200 |
---|---|---|
committer | Michaƫl Zasso <targos@protonmail.com> | 2020-06-02 20:21:52 +0200 |
commit | 85ce30fe57174882537dd8f04427ff43d23708f8 (patch) | |
tree | b42d214f53029697ec5ce24be9b8c2a0e903f8a6 /.github | |
parent | 71c4d9174e889777e320d953b8c13a45af00dd19 (diff) | |
download | node-new-85ce30fe57174882537dd8f04427ff43d23708f8.tar.gz |
build: run full test suite in ASAN action
Refs: https://github.com/nodejs/node/pull/32776
PR-URL: https://github.com/nodejs/node/pull/33170
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matheus Marchini <mat@mmarchini.me>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test-asan.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml index 56ad55f673..54d6cae049 100644 --- a/.github/workflows/test-asan.yml +++ b/.github/workflows/test-asan.yml @@ -1,6 +1,12 @@ name: test-asan -on: [push, pull_request] +on: + push: + paths-ignore: + - 'doc/**' + pull_request: + paths-ignore: + - 'doc/**' env: PYTHON_VERSION: 3.8 @@ -24,5 +30,5 @@ jobs: run: npx envinfo - name: Build run: make build-ci -j2 V=1 - - name: Test cctest - run: make cctest -j2 V=1 + - name: Test + run: make run-ci -j2 V=1 TEST_CI_ARGS="-p dots" |