feat: WSLのSSH認証情報をDevContainerにマウントする手順を追加 #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: "🚀 Build DevContainer" | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test-devcontainer-services: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI_MODE: "1" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Build and Test DevContainer Services | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| imageName: opencode-ecc-devcontainer | |
| push: never | |
| runCmd: | | |
| # Node.js バージョン確認 | |
| node --version | |
| npm --version | |
| # OpenCode CLI 確認 | |
| opencode --version | |
| # ECC 確認 | |
| ecc --version | |
| echo "✅ 全サービス正常動作確認" |