tangled
alpha
login
or
join now
eldridge.cam
/
cartography
0
fork
atom
Trading card city builder game?
0
fork
atom
overview
issues
pulls
pipelines
try fix ts ci
eldridge.cam
1 month ago
b49b45d0
5b05200b
verified
This commit was signed with the committer's
known signature
.
eldridge.cam
SSH Key Fingerprint:
SHA256:MAgO4sya2MgvdgUjSGKAO0lQ9X2HQp1Jb+x/Tpeeims=
+5
-5
1 changed file
expand all
collapse all
unified
split
.github
workflows
typescript.yml
+5
-5
.github/workflows/typescript.yml
···
56
56
- name: Generate OpenAPI
57
57
run: |
58
58
cargo run -- --openapi > openapi.json
59
59
-
cd server && npx orval
59
59
+
cd app && npx orval
60
60
- name: Run lint
61
61
run: npx eslint . --max-warnings 0
62
62
working-directory: ./app
···
91
91
- name: Generate OpenAPI
92
92
run: |
93
93
cargo run -- --openapi > openapi.json
94
94
-
cd server && npx orval
94
94
+
cd app && npx orval
95
95
- name: Run check
96
96
run: |
97
97
set -e
98
98
-
cd server && npx svelte-kit sync
98
98
+
cd app && npx svelte-kit sync
99
99
npx svelte-check --tsconfig ./tsconfig.json
100
100
working-directory: ./app
101
101
···
129
129
- name: Generate OpenAPI
130
130
run: |
131
131
cargo run -- --openapi > openapi.json
132
132
-
cd server && npx orval
132
132
+
cd app && npx orval
133
133
- name: Run build
134
134
run: npx vite build
135
135
working-directory: ./app
···
164
164
- name: Generate OpenAPI
165
165
run: |
166
166
cargo run -- --openapi > openapi.json
167
167
-
cd server && npx orval
167
167
+
cd app && npx orval
168
168
- name: Run test
169
169
run: npm test
170
170
working-directory: ./app