-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 739 Bytes
/
Copy pathtest.yml
File metadata and controls
35 lines (28 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 "✅ 全サービス正常動作確認"