Skip to content

Commit

Permalink
ci: test integration without coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
knightedcodemonkey committed Sep 30, 2024
1 parent 1b10517 commit cda7e7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Lint
run: npm run lint
- name: Test
run: npm test
run: npm run test:integration
- name: Report Coverage
uses: codecov/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"lint": "eslint src/*.js test/*.js",
"test:integration": "node --test --test-reporter=spec test/integration.js",
"test:monorepos": "node --test --test-reporter=spec test/monorepos.js",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov node --test --test-reporter=spec test/monorepos.js",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov node --test --test-reporter=spec test/integration.js test/monorepos.js",
"build": "node src/duel.js --dirs",
"prepack": "npm run build"
},
Expand Down

0 comments on commit cda7e7e

Please sign in to comment.