ci(demo-workflow): list all files in repository #2
This file contains hidden or 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
| name: Demo workflow | |
| on: [push] | |
| jobs: | |
| demo: | |
| runs-on: ubuntu-latest # self-hosted | |
| steps: | |
| - name: List all files | |
| shell: bash | |
| run: ls -r |