added node install/build
This commit is contained in:
parent
860d749c6b
commit
648f2183c2
10
.github/workflows/build-openmct.yml
vendored
10
.github/workflows/build-openmct.yml
vendored
|
@ -14,7 +14,15 @@ jobs:
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: 1.22
|
go-version: 1.22
|
||||||
- name: Build
|
- name: Set up Node
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
- name: Install OpenMCT
|
||||||
|
run: npm install
|
||||||
|
working-directory: web/
|
||||||
|
- name: Build OpenMCT bundle
|
||||||
|
run: npm run build
|
||||||
|
working-directory: web/
|
||||||
|
- name: Build Gotelem
|
||||||
run: go build -v -tags openmct ./cmd/gotelem
|
run: go build -v -tags openmct ./cmd/gotelem
|
||||||
- name: Use Go Action
|
- name: Use Go Action
|
||||||
id: use-go-action
|
id: use-go-action
|
||||||
|
|
Loading…
Reference in a new issue