tangled
alpha
login
or
join now
eldridge.cam
/
cartography
0
fork
atom
Trading card city builder game?
0
fork
atom
overview
issues
pulls
pipelines
fixing ts ci again again
eldridge.cam
1 month ago
bd72ce31
5e4e2bd4
verified
This commit was signed with the committer's
known signature
.
eldridge.cam
SSH Key Fingerprint:
SHA256:MAgO4sya2MgvdgUjSGKAO0lQ9X2HQp1Jb+x/Tpeeims=
+12
-8
1 changed file
expand all
collapse all
unified
split
.github
workflows
typescript.yml
+12
-8
.github/workflows/typescript.yml
···
57
57
run: |
58
58
set -e
59
59
cargo run -- --openapi > openapi.json
60
60
-
cd app && npx svelte-kit sync
61
61
-
cd app && npx orval
60
60
+
cd app
61
61
+
npx svelte-kit sync
62
62
+
npx orval
62
63
- name: Run lint
63
64
run: npx eslint . --max-warnings 0
64
65
working-directory: ./app
···
94
95
run: |
95
96
set -e
96
97
cargo run -- --openapi > openapi.json
97
97
-
cd app && npx svelte-kit sync
98
98
-
cd app && npx orval
98
98
+
cd app
99
99
+
npx svelte-kit sync
100
100
+
npx orval
99
101
- name: Run check
100
102
run: npx svelte-check --tsconfig ./tsconfig.json
101
103
working-directory: ./app
···
131
133
run: |
132
134
set -e
133
135
cargo run -- --openapi > openapi.json
134
134
-
cd app && npx svelte-kit sync
135
135
-
cd app && npx orval
136
136
+
cd app
137
137
+
npx svelte-kit sync
138
138
+
npx orval
136
139
- name: Run build
137
140
run: npx vite build
138
141
working-directory: ./app
···
168
171
run: |
169
172
set -e
170
173
cargo run -- --openapi > openapi.json
171
171
-
cd app && npx svelte-kit sync
172
172
-
cd app && npx orval
174
174
+
cd app
175
175
+
npx svelte-kit sync
176
176
+
npx orval
173
177
- name: Run test
174
178
run: npm test
175
179
working-directory: ./app