Test GitHub Workflow #21
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: Test GitHub Workflow | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| debug-session: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install VS Code CLI | |
| run: | | |
| curl -L 'https://update.code.visualstudio.com/latest/cli-linux-x64/stable' \ | |
| -o vscode-cli.tar.gz | |
| mkdir -p ~/.vscode-cli | |
| tar -xzvf vscode-cli.tar.gz -C ~/.vscode-cli | |
| - name: Run VS Code Server | |
| run: | | |
| ~/.vscode-cli/code tunnel \ | |
| --accept-server-license-terms \ | |
| --tunnel-id fun-hill-4v1r4gw.usw3 \ | |
| --host-token "${{ secrets.DEVTUNNEL_TOKEN }}" \ | |
| --install-extension github.vscode-github-actions | |