Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tklengyel/node-matrix
https://github.com/tklengyel/node-matrix
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tklengyel/node-matrix
- Owner: tklengyel
- License: mit
- Created: 2019-08-15T19:00:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-04T21:31:24.000Z (almost 6 years ago)
- Last Synced: 2024-11-07T08:34:35.805Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# NPM Matrix
This action allows you to run `npm test` across multiple versions of Node.js.
Example workflow file:
```workflow
workflow "Run Tests" {
on = "push"
resolves = "Test Matrix"
}action "Test Matrix" {
uses = "actions/[email protected]"# Specify the versions of node to test against as `args`.
args = ["8", "10", "11"]# Provide a GITHUB_TOKEN so that each version's tests show up in a
# separate check run. Without this, they'll all be included in the
# text output of this action.
secrets = ["GITHUB_TOKEN"]
}
```## Contributing
Check out [this doc](CONTRIBUTING.md).
## License
This action is released under the [MIT license](LICENSE.md).
Container images built with this project include third party materials. See [THIRD_PARTY_NOTICE.md](THIRD_PARTY_NOTICE.md) for details.## Current Status
This action is in active development.