actions / checkout
blob · README.md · md
README.mdmd
1# checkout23This action checks out your repository so that your workflow operates from the root of the repository45# Usage67See [action.yml](action.yml)89Basic:10```yaml11steps:12- uses: actions/checkout@master13- uses: actions/setup-node@master14 with:15 version: 10.x16- run: npm install17- run: npm test18```1920# License2122The scripts and documentation in this project are released under the [MIT License](LICENSE)23
100%