Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
- name: Run tests and generate coverage information (Node 18.x, Node 20.x)
if: matrix.node-version != '16.x'
run: |
NODE_OPTIONS=--openssl-legacy-provider npm run test:ci
NODE_OPTIONS=--openssl-legacy-provider npm run test && npm run coverage
env:
CI: true
- name: Run tests and generate coverage information (Node 16.x)
if: matrix.node-version == '16.x'
run: |
npm run test:ci
npm run test && npm run coverage
env:
CI: true
- name: Upload coverage to Codecov
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

This plugin extracts _open source license information_ about all of the npm packages in your webpack output and helps you identify and fix problems with your open source licensing policy.

This plugin has full test coverage and is tested with **webpack 2, 3, 4 and 5**. It will help you:
This plugin has full unit and end to end test coverage and is tested with **webpack 5**. It will help you:

- Discover every npm package used in your webpack output
- Find out how it is licensed
Expand Down
Loading