Permalink
Cannot retrieve contributors at this time
22 lines (16 sloc)
414 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
checkout/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |