tangled
alpha
login
or
join now
hexmani.ac
/
clippr
12
fork
atom
social bookmarking for atproto
12
fork
atom
overview
issues
1
pulls
pipelines
[spindle/test] use prefix flag
hexmani.ac
8 months ago
7195a9dd
5edf4a39
verified
This commit was signed with the committer's
known signature
.
hexmani.ac
SSH Key Fingerprint:
SHA256:tV3v2UX4P3x12jjh+mHVzpRQ4ZhNBCHoFwqRiYzzTcM=
1/3
build_backend.yaml
failed
56s
build_frontend.yaml
success
47s
build_lexicons.yaml
failed
17s
+8
-17
3 changed files
expand all
collapse all
unified
split
.tangled
workflows
build_backend.yaml
build_frontend.yaml
build_lexicons.yaml
+3
-6
.tangled/workflows/build_backend.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
11
-
- name: "Move to backend folder"
12
12
-
command: "cd backend"
13
13
-
14
11
- name: "Install dependencies"
15
15
-
command: "npm install"
12
12
+
command: "npm install -C ./backend/"
16
13
environment:
17
14
NODE_ENV: "development"
18
15
CI: true
19
16
20
17
- name: "Run linter"
21
21
-
command: "npm run lint"
18
18
+
command: "npm run lint -C ./backend/"
22
19
23
20
- name: "Build application"
24
24
-
command: "npm run build"
21
21
+
command: "npm run build -C ./backend/"
25
22
environment:
26
23
NODE_ENV: "production"
27
24
+2
-5
.tangled/workflows/build_frontend.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
11
-
- name: "Move to frontend folder"
12
12
-
command: "cd frontend"
13
13
-
14
11
- name: "Install dependencies"
15
15
-
command: "npm install"
12
12
+
command: "npm install -C ./frontend/"
16
13
environment:
17
14
NODE_ENV: "development"
18
15
CI: true
19
16
20
17
- name: "Build frontend"
21
21
-
command: "npm run build"
18
18
+
command: "npm run build -C ./frontend/"
22
19
23
20
clone:
24
21
skip: false
+3
-6
.tangled/workflows/build_lexicons.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
11
-
- name: "Move to lexicons folder"
12
12
-
command: "cd lexicons"
13
13
-
14
11
- name: "Install dependencies"
15
15
-
command: "npm install"
12
12
+
command: "npm install -C ./lexicons/"
16
13
environment:
17
14
NODE_ENV: "development"
18
15
CI: true
19
16
20
17
- name: "Generate lexicons"
21
21
-
command: "npm run generate"
18
18
+
command: "npm run generate -C ./lexicons/"
22
19
23
20
- name: "Build package"
24
24
-
command: "npm run prepublish"
21
21
+
command: "npm run prepublish -C ./lexicons/"
25
22
environment:
26
23
NODE_ENV: "production"
27
24