mirror of
https://github.com/actions/checkout.git
synced 2025-03-31 05:20:06 +02:00
Update README.md
This commit is contained in:
parent
3df79e0276
commit
6b71935c43
1 changed files with 22 additions and 1 deletions
23
README.md
23
README.md
|
@ -1 +1,22 @@
|
||||||
# checkout
|
# checkout
|
||||||
|
|
||||||
|
This action checks out your repository so that your workflow operates from the root of the repository
|
||||||
|
|
||||||
|
# Usage
|
||||||
|
|
||||||
|
See [action.yml](action.yml)
|
||||||
|
|
||||||
|
Basic:
|
||||||
|
```yaml
|
||||||
|
actions:
|
||||||
|
- uses: actions/checkout@latest
|
||||||
|
- uses: actions/setup-node@latest
|
||||||
|
with:
|
||||||
|
version: 10.x
|
||||||
|
- run: npm install
|
||||||
|
- run: npm test
|
||||||
|
```
|
||||||
|
|
||||||
|
# License
|
||||||
|
|
||||||
|
The scripts and documentation in this project are released under the [MIT License](LICENSE)
|
||||||
|
|
Loading…
Add table
Reference in a new issue