mirror of
https://github.com/actions/setup-node
synced 2025-04-09 10:25:52 +00:00
adjust a few examples to mention nodejs 12
This commit is contained in:
parent
83c9f7a7df
commit
c80f79c787
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ steps:
|
|||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '10.x'
|
||||
node-version: '12.x'
|
||||
- run: npm install
|
||||
- run: npm test
|
||||
```
|
||||
|
@ -31,7 +31,7 @@ jobs:
|
|||
runs-on: ubuntu-16.04
|
||||
strategy:
|
||||
matrix:
|
||||
node: [ '10', '8' ]
|
||||
node: [ '12', '10', '8' ]
|
||||
name: Node ${{ matrix.node }} sample
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
Loading…
Add table
Reference in a new issue