Skip to content

Commit

Permalink
Fix directory name and remove unnecessary flag in test script
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomt committed Mar 3, 2024
1 parent 38c1b9c commit 8957daf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
- run: npm run lint
- run: |
ulimit -c unlimited
sudo mkdir -p /var/ndbug
sudo mkdir -p /var/ndebug
sudo npm test
sudo chmod -R +rw /var/ndbug
sudo chmod -R +rw /var/ndebug
continue-on-error: true
- name: Upload core dumps
uses: actions/upload-artifact@v2
with:
name: core-dumps
path: /var/ndbug
path: /var/ndebug
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"scripts": {
"start": "node ./bin/cli.js",
"test": "ava -T 1m --verbose -c 1 --no-worker-threads --serial --node-arguments '--node-memory-debug --report-dir=/var/ndebug --report-on-fatalerror --report-on-signal'",
"test": "ava -T 1m --verbose -c 1 --node-arguments '--node-memory-debug --report-dir=/var/ndebug --report-on-fatalerror --report-on-signal'",
"lint": "eslint ."
},
"author": "Nicolas Martinez",
Expand Down

0 comments on commit 8957daf

Please sign in to comment.