actions / checkout
blob · README.md · md
← filesrepo
README.mdmd
1# checkout
2
3This action checks out your repository so that your workflow operates from the root of the repository
4
5# Usage
6
7See [action.yml](action.yml)
8
9Basic:
10```yaml
11steps:
12- uses: actions/checkout@master
13- uses: actions/setup-node@master
14 with:
15 version: 10.x
16- run: npm install
17- run: npm test
18```
19
20# License
21
22The scripts and documentation in this project are released under the [MIT License](LICENSE)
23
100%