mirror of
https://github.com/actions/setup-node.git
synced 2025-04-22 01:11:00 +00:00
changing actions to steps
This commit is contained in:
parent
8944f08d2a
commit
0351feb393
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ See [action.yml](action.yml)
|
|||
|
||||
Basic:
|
||||
```yaml
|
||||
actions:
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/setup-node@master
|
||||
with:
|
||||
|
@ -28,7 +28,7 @@ jobs:
|
|||
matrix:
|
||||
node: [ 10, 8 ]
|
||||
name: Node ${{ matrix.node }} sample
|
||||
actions:
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Setup node
|
||||
uses: actions/setup-node@master
|
||||
|
|
Loading…
Add table
Reference in a new issue