mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-03 03:01:40 +00:00
17 lines
288 B
YAML
17 lines
288 B
YAML
version: 2 # use CircleCI 2.0
|
|
jobs:
|
|
build_ui:
|
|
docker:
|
|
- image: node:latest
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: cd chameleon-client
|
|
- run: npm install
|
|
- run: npm run build
|
|
|
|
- store_artifacts:
|
|
path: chameleon-client/dist/*
|
|
|