Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update CI to include build+test:headless #680

Merged
merged 3 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: update CI to include build+test:headless
Because some of the dependabot / snyk PRs could update dependencies like
webpack and friends, these checks should be included for pull requests.

Signed-off-by: Lance Ball <lball@redhat.com>
  • Loading branch information
lance committed Oct 3, 2022
commit 4196f9a480ce29f7dae18a9a8abc7a1edc95e7ec
2 changes: 2 additions & 0 deletions .github/workflows/nodejs-ci-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test
- run: npm run test:headless
- run: npx @pkgjs/support validate
- run: node_modules/nyc/bin/nyc.js report --reporter=lcovonly
- name: Coveralls Parallel
Expand Down
3 changes: 3 additions & 0 deletions test/browser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
'use strict';

require('../circuit-shutdown-test.js');
require('../closed-test.js');
require('../common.js');
require('../context-test.js');
require('../enable-disable-test.js');
require('../error-filter-test.js');
require('../half-open-test.js');
require('../health-check-test.js');
require('../semaphore-test.js');
require('../state-test.js');
require('../status-test.js');
require('../test.js');
require('../volume-threshold-test.js');
require('../warmup-test.js');