Trigger Run 0768d522cbc0db28dc0500e2b3b6f6c81138e5b2 #153590
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: Proxy Test | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| proxy_test: | |
| runs-on: self-hosted | |
| steps: | |
| # Checkout using REST API | |
| - name: Checkout using REST API | |
| uses: actions/checkout@v3 | |
| - name: Verify files | |
| run: cat README.md | |
| # Checkout using Git | |
| - name: Install Git | |
| run: ./install-git.sh | |
| - name: Clean | |
| run: ./reset-workspace.sh | |
| - name: Checkout using Git | |
| uses: actions/checkout@v3 | |
| - name: Verify files | |
| run: cat README.md | |
| # Setup Node.js | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Verify node and npm | |
| run: ./verify-node.sh 16 | |
| # Cleanup | |
| - name: Clean | |
| run: ./reset-workspace.sh |