1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-25 11:40:02 +00:00

Add docs (#2)

* Update README.md

* Create LICENSE

* Update README.md
This commit is contained in:
Danny McCormick 2019-07-23 15:32:03 -04:00 committed by GitHub
parent 3df79e0276
commit bf4af63534
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 1 deletions

View file

@ -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@master
- uses: actions/setup-node@master
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)