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] fix prefixes for run script AGAIN
hexmani.ac
8 months ago
4e099cbc
36342fec
verified
This commit was signed with the committer's
known signature
.
hexmani.ac
SSH Key Fingerprint:
SHA256:tV3v2UX4P3x12jjh+mHVzpRQ4ZhNBCHoFwqRiYzzTcM=
0/3
build_backend.yaml
failed
12s
build_frontend.yaml
failed
12s
build_lexicons.yaml
failed
12s
+6
-6
3 changed files
expand all
collapse all
unified
split
.tangled
workflows
build_backend.yaml
build_frontend.yaml
build_lexicons.yaml
+2
-2
.tangled/workflows/build_backend.yaml
···
16
16
CI: true
17
17
18
18
- name: "Run linter"
19
19
-
command: "pnpm run lint -C ./backend/"
19
19
+
command: "pnpm run --dir ./backend/ lint"
20
20
21
21
- name: "Build application"
22
22
-
command: "pnpm run build -C ./backend/"
22
22
+
command: "pnpm run --dir ./backend/ build"
23
23
environment:
24
24
NODE_ENV: "production"
25
25
+2
-2
.tangled/workflows/build_frontend.yaml
···
10
10
11
11
steps:
12
12
- name: "Install dependencies"
13
13
-
command: "pnpm install -C ./frontend/"
13
13
+
command: "pnpm install --dir ./frontend/"
14
14
environment:
15
15
NODE_ENV: "development"
16
16
CI: true
17
17
18
18
- name: "Build frontend"
19
19
-
command: "pnpm run build -C ./frontend/"
19
19
+
command: "pnpm run --dir ./frontend/ build"
20
20
21
21
clone:
22
22
skip: false
+2
-2
.tangled/workflows/build_lexicons.yaml
···
16
16
CI: true
17
17
18
18
- name: "Generate lexicons"
19
19
-
command: "pnpm run generate -C ./lexicons/"
19
19
+
command: "pnpm run --dir ./lexicons/ generate "
20
20
21
21
- name: "Build package"
22
22
-
command: "pnpm run prepublish -C ./lexicons/"
22
22
+
command: "pnpm run --dir ./lexicons/ prepublish "
23
23
environment:
24
24
NODE_ENV: "production"
25
25