Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Sep 11, 2019
1 parent 346e64e commit d9e13ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set up node using nvm

This action sets up a specific node.js version on GitHub Actions using nvm.
This action sets up a specific node.js version on GitHub Actions using nvm, very similar to the original [@actions/setup-node](https://github.com/actions/setup-node). Unlike setup-node (at the time of this writing) it does support `lts/*` (latest LTS), `node` (latest stable) and custom mirrors like the one for v8-canary, but does not work on Windows.

## Inputs

Expand All @@ -15,13 +15,13 @@ The node.js mirror to use, e.g. `https://nodejs.org/download/v8-canary/` for can
## Example usage:

```yaml
uses: dcodeIO/setup-node-nvm
uses: dcodeIO/setup-node-nvm@master
with:
node-version: lts/*
```
```yaml
uses: dcodeIO/setup-node-nvm
uses: dcodeIO/setup-node-nvm@master
with:
node-version: node
node-mirror: https://nodejs.org/download/v8-canary/
Expand Down

0 comments on commit d9e13ee

Please sign in to comment.