Skip to content

Commit dabe9ba

Browse files
committed
[build] fix
1 parent 9788ce4 commit dabe9ba

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.circleci/config.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,19 @@ jobs:
77
- checkout
88
- attach_workspace:
99
at: ./ui/dist
10-
- run: cd ui
11-
- run: npm install
12-
- run: npm test
13-
- run: npm run build
10+
- cd:
11+
- run:
12+
name: "Install dependencies"
13+
command: npm install
14+
working_directory: ui
15+
- run:
16+
name: "Run tests"
17+
command: npm test
18+
working_directory: ui
19+
- run:
20+
name: "Build"
21+
command: npm run build
22+
working_directory: ui
1423

1524
build:
1625
docker:

0 commit comments

Comments
 (0)