tangled
alpha
login
or
join now
hexmani.ac
/
clippr
12
fork
atom
social bookmarking for atproto
12
fork
atom
overview
issues
1
pulls
pipelines
add spindle workflows
authored by
hexmani.ac
and committed by
Tangled
8 months ago
f73e9458
83360308
0/3
build_backend.yaml
failed
23s
build_frontend.yaml
failed
23s
build_lexicons.yaml
failed
23s
+73
-8
4 changed files
expand all
collapse all
unified
split
.idea
jsLibraryMappings.xml
.tangled
workflows
build_backend.yaml
build_frontend.yaml
build_lexicons.yaml
-8
.idea/jsLibraryMappings.xml
···
1
1
-
<?xml version="1.0" encoding="UTF-8"?>
2
2
-
<project version="4">
3
3
-
<component name="JavaScriptLibraryMappings">
4
4
-
<file url="file://$PROJECT_DIR$/backend" libraries="{clippr/backend/node_modules}" />
5
5
-
<file url="file://$PROJECT_DIR$/frontend" libraries="{clippr/frontend/node_modules}" />
6
6
-
<file url="PROJECT" libraries="{clippr/backend/node_modules, clippr/frontend/node_modules}" />
7
7
-
</component>
8
8
-
</project>
+26
.tangled/workflows/build_backend.yaml
···
1
1
+
when:
2
2
+
- event: [ "push", "pull_request" ]
3
3
+
branch: [ "main" ]
4
4
+
- event: [ "manual" ]
5
5
+
6
6
+
dependencies:
7
7
+
nixpkgs:
8
8
+
- nodejs
9
9
+
10
10
+
steps:
11
11
+
- name: "Move to backend folder"
12
12
+
command: "cd backend"
13
13
+
14
14
+
- name: "Install dependencies"
15
15
+
command: "npm install"
16
16
+
environment:
17
17
+
NODE_ENV: "development"
18
18
+
CI: true
19
19
+
20
20
+
- name: "Run linter"
21
21
+
command: "npm run lint"
22
22
+
23
23
+
- name: "Build application"
24
24
+
command: "npm run build"
25
25
+
environment:
26
26
+
NODE_ENV: "production"
+21
.tangled/workflows/build_frontend.yaml
···
1
1
+
when:
2
2
+
- event: [ "push", "pull_request" ]
3
3
+
branch: [ "main" ]
4
4
+
- event: [ "manual" ]
5
5
+
6
6
+
dependencies:
7
7
+
nixpkgs:
8
8
+
- nodejs
9
9
+
10
10
+
steps:
11
11
+
- name: "Move to frontend folder"
12
12
+
command: "cd frontend"
13
13
+
14
14
+
- name: "Install dependencies"
15
15
+
command: "npm install"
16
16
+
environment:
17
17
+
NODE_ENV: "development"
18
18
+
CI: true
19
19
+
20
20
+
- name: "Build frontend"
21
21
+
command: "npm run build"
+26
.tangled/workflows/build_lexicons.yaml
···
1
1
+
when:
2
2
+
- event: [ "push", "pull_request" ]
3
3
+
branch: [ "main" ]
4
4
+
- event: [ "manual" ]
5
5
+
6
6
+
dependencies:
7
7
+
nixpkgs:
8
8
+
- nodejs
9
9
+
10
10
+
steps:
11
11
+
- name: "Move to lexicons folder"
12
12
+
command: "cd lexicons"
13
13
+
14
14
+
- name: "Install dependencies"
15
15
+
command: "npm install"
16
16
+
environment:
17
17
+
NODE_ENV: "development"
18
18
+
CI: true
19
19
+
20
20
+
- name: "Generate lexicons"
21
21
+
command: "npm run generate"
22
22
+
23
23
+
- name: "Build package"
24
24
+
command: "npm run prepublish"
25
25
+
environment:
26
26
+
NODE_ENV: "production"