+2
-5
.tangled/workflows/build_backend.yaml
+2
-5
.tangled/workflows/build_backend.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
-
- name: "Get directory layout"
12
-
command: "ls -alh"
13
-
14
11
- name: "Move to backend folder"
15
-
command: "cd backend"
12
+
command: "cd /tangled/workspace/backend"
16
13
17
14
- name: "Install dependencies"
18
-
command: "npm install"
15
+
command: "npm install backend/package.json"
19
16
environment:
20
17
NODE_ENV: "development"
21
18
CI: true
+2
-5
.tangled/workflows/build_frontend.yaml
+2
-5
.tangled/workflows/build_frontend.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
-
- name: "Get directory layout"
12
-
command: "ls -alh"
13
-
14
11
- name: "Move to frontend folder"
15
-
command: "cd frontend"
12
+
command: "cd /tangled/workspace/frontend"
16
13
17
14
- name: "Install dependencies"
18
-
command: "npm install"
15
+
command: "npm install frontend/package.json"
19
16
environment:
20
17
NODE_ENV: "development"
21
18
CI: true
+2
-5
.tangled/workflows/build_lexicons.yaml
+2
-5
.tangled/workflows/build_lexicons.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
-
- name: "Get directory layout"
12
-
command: "ls -alh"
13
-
14
11
- name: "Move to lexicons folder"
15
-
command: "cd lexicons"
12
+
command: "cd /tangled/workspace/lexicons"
16
13
17
14
- name: "Install dependencies"
18
-
command: "npm install"
15
+
command: "npm install lexicons/package.json"
19
16
environment:
20
17
NODE_ENV: "development"
21
18
CI: true