Compare commits

..

5 Commits

Author SHA1 Message Date
3fa75190be Update description 2019-11-08 16:24:23 +00:00
6ecfd2dcb2 Merge pull request #66 from phishy/patch-1
Update README.md
2019-10-18 16:37:52 -04:00
466ce3c2f0 Update README.md 2019-10-11 10:27:02 -04:00
f499b0c1ab Update README.md 2019-09-27 07:31:22 -05:00
e565252a9d Fixing checkout to reference v1 in readme 2019-09-12 15:54:53 -04:00
2 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@ See [action.yml](action.yml)
Basic:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '10.x'
@ -34,7 +34,7 @@ jobs:
node: [ '10', '8' ]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
@ -46,7 +46,7 @@ jobs:
Publish to npmjs and GPR with npm:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '10.x'
@ -66,7 +66,7 @@ steps:
Publish to npmjs and GPR with yarn:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '10.x'
@ -86,7 +86,7 @@ steps:
Use private packages:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '10.x'
@ -96,7 +96,7 @@ steps:
- run: npm install --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# `npm rebuild` will run all those post-install scritps for us.
# `npm rebuild` will run all those post-install scripts for us.
- run: npm rebuild && npm run prepare --if-present
```

View File

@ -1,5 +1,5 @@
name: 'Setup Node.js environment'
description: 'Setup a Node.js environment and add it to the PATH, additionally providing proxy support'
name: 'Setup Node.js'
description: 'Set up a specific version of Node.js and add the command-line tools to the PATH'
author: 'GitHub'
inputs:
always-auth: