Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tklengyel/node-matrix


https://github.com/tklengyel/node-matrix

Last synced: 9 days ago
JSON representation

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.