Skip to content

Commit d9e13ee

Browse files
committed
Update README
1 parent 346e64e commit d9e13ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set up node using nvm
22

3-
This action sets up a specific node.js version on GitHub Actions using nvm.
3+
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.
44

55
## Inputs
66

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

1717
```yaml
18-
uses: dcodeIO/setup-node-nvm
18+
uses: dcodeIO/setup-node-nvm@master
1919
with:
2020
node-version: lts/*
2121
```
2222
2323
```yaml
24-
uses: dcodeIO/setup-node-nvm
24+
uses: dcodeIO/setup-node-nvm@master
2525
with:
2626
node-version: node
2727
node-mirror: https://nodejs.org/download/v8-canary/

0 commit comments

Comments
 (0)