try w/o asan #1418
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js CI | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
env: | |
BUILTIN_PYTHON_VERSION: 3.12.2 | |
jobs: | |
asan: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- run: npm install --ignore-scripts | |
- run: npx @mapbox/node-pre-gyp configure --debug | |
- run: npx @mapbox/node-pre-gyp build -j max | |
- run: python3 -m pip install --upgrade pip | |
- run: pip3 install -r test/requirements.txt | |
- run: npm test -- --repeats 1000 | |
env: | |
LSAN_OPTIONS: suppressions=${{ github.workspace }}/test/napi-leaks-suppression.txt |