2019-07-23 21:32:03 +02:00
# checkout
This action checks out your repository so that your workflow operates from the root of the repository
2019-08-13 16:53:03 +02:00
By default, this is equivalent to running `git fetch` and `git checkout $GITHUB_SHA` , so that you'll always have your repo contents at the version that triggered the workflow.
2019-08-16 16:56:22 +02:00
See [here ](https://help.github.com/en/articles/events-that-trigger-workflows ) to learn what `$GITHUB_SHA` is for different kinds of events.
2019-08-13 16:53:03 +02:00
2019-07-23 21:32:03 +02:00
# Usage
See [action.yml ](action.yml )
Basic:
```yaml
2019-07-26 03:30:48 +02:00
steps:
2019-07-23 21:32:03 +02:00
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
2019-08-16 16:59:11 +02:00
node-version: 10.x
2019-07-23 21:32:03 +02:00
- run: npm install
- run: npm test
```
# License
The scripts and documentation in this project are released under the [MIT License ](LICENSE )