Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract api definitions #2101

Merged
merged 63 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from 61 commits
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
1dc26c2
move parachain-api out(build fail)
0xverin Aug 31, 2023
08e03ca
extract parachain/sidechain api folder
0xverin Sep 1, 2023
961cdc3
api dependencies
0xverin Sep 1, 2023
86742d9
used in ts-tests
0xverin Sep 1, 2023
9e689d3
fix export issue
0xverin Sep 4, 2023
331e06a
format
0xverin Sep 4, 2023
c96888e
yarn.lock
0xverin Sep 4, 2023
18248e0
modified package.json
0xverin Sep 4, 2023
4832a07
Merge branch 'dev' into 2088-extract-api-definitions
0xverin Sep 4, 2023
9a4805e
Merge branch 'dev' into 2088-extract-api-definitions
0xverin Sep 4, 2023
b9739d2
remove yarn.lock
0xverin Sep 4, 2023
f67a1e8
format
0xverin Sep 4, 2023
aee36b7
add lock file
0xverin Sep 4, 2023
7951a03
update lockfile
0xverin Sep 5, 2023
40a847f
update client-api yarn.lock
0xverin Sep 5, 2023
681f064
lock file
kziemianek Sep 5, 2023
d9626b2
file-filter file
0xverin Sep 6, 2023
96ac633
Merge branch 'dev' into 2088-extract-api-definitions
0xverin Sep 6, 2023
8363261
modified api devDependencies
0xverin Sep 6, 2023
89aa63e
package.json format
0xverin Sep 6, 2023
4277d38
lockfile
0xverin Sep 6, 2023
8f10a5c
modified file-filter.yml
0xverin Sep 11, 2023
4a90114
added ci steps
0xverin Sep 11, 2023
c10eaf8
update yarn.lock
0xverin Sep 11, 2023
a19d1e4
update file-filter.yml
0xverin Sep 12, 2023
a6f2997
try native yarn debugging
grumpygreenguy Sep 12, 2023
98a573b
Merge branch 'dev' into 2088-extract-api-definitions
0xverin Sep 21, 2023
fb09ff9
lock file
0xverin Sep 21, 2023
a6352e6
module path
0xverin Sep 21, 2023
0bb529c
add missing volumes path; praying for success
grumpygreenguy Sep 22, 2023
8fc3b13
missed a few
grumpygreenguy Sep 22, 2023
a338494
fix export issue
0xverin Sep 25, 2023
d9d85f8
uncomment
0xverin Sep 25, 2023
b6bd955
rebuild&&format&&lockfile
0xverin Sep 25, 2023
ad62c1e
add prettier rules
0xverin Sep 25, 2023
6463d51
rebuild
0xverin Sep 25, 2023
739a339
lockfile
0xverin Sep 25, 2023
7a52296
rebuild && lockfile
0xverin Sep 25, 2023
cb224a8
add client-api build
0xverin Sep 25, 2023
6279ecf
rebuild && reinstall
0xverin Sep 25, 2023
0917407
Merge branch 'dev' into 2088-extract-api-definitions
0xverin Sep 28, 2023
47dae30
fix api folder && rebuild
0xverin Sep 28, 2023
7cbb476
fix package.json
0xverin Sep 28, 2023
0f6f87d
replace yarn
0xverin Sep 28, 2023
5489606
order of adjustment
0xverin Sep 28, 2023
1822172
remove build-context
0xverin Sep 28, 2023
4d829aa
fix build issue
0xverin Sep 28, 2023
a5dc578
update lit-resume-worker.yml
0xverin Sep 28, 2023
f6a9729
pnpm-lock
0xverin Sep 28, 2023
558ffb3
fix resume-worker issue
0xverin Sep 28, 2023
30093ec
Merge branch 'dev' into 2088-extract-api-definitions
0xverin Oct 7, 2023
91c8912
lockfile
0xverin Oct 7, 2023
0123b20
update metadata
0xverin Oct 7, 2023
17b712f
build api
0xverin Oct 7, 2023
7b30633
update pnpm-lock.yaml
0xverin Oct 7, 2023
7aabcdd
update identity definitions
0xverin Oct 8, 2023
6738059
README
0xverin Oct 8, 2023
c6ccdad
remove format
0xverin Oct 9, 2023
fb0417b
remove commet && remove duplicate steps
0xverin Oct 9, 2023
06cdd79
remove client-api in file-filter.yml
0xverin Oct 9, 2023
fb6fc14
fix ts-test shell
0xverin Oct 9, 2023
a6fb9be
remove yarn.lock
0xverin Oct 9, 2023
b0b7fca
add pnpm exec and rebuild
0xverin Oct 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,15 @@ jobs:
- name: Enable corepack and pnpm
run: corepack enable && corepack enable pnpm

- name: Tee-worker install npm deps
- name: Tee-worker client-api install npm deps
working-directory: ./tee-worker/client-api
run: pnpm install

- name: Tee-worker client-api build
working-directory: ./tee-worker/client-api
run: pnpm run build
0xverin marked this conversation as resolved.
Show resolved Hide resolved

- name: Tee-worker ts-tests install npm deps
working-directory: ./tee-worker/ts-tests
run: pnpm install

Expand Down Expand Up @@ -478,8 +486,6 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
build-contexts: local-stash=docker-image://localhost:5000/local-stash:latest
load: true
0xverin marked this conversation as resolved.
Show resolved Hide resolved
file: tee-worker/build.Dockerfile
tags: litentry/litentry-worker:latest
target: deployed-worker
Expand All @@ -489,8 +495,6 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
build-contexts: local-stash=docker-image://localhost:5000/local-stash:latest
load: true
file: tee-worker/build.Dockerfile
tags: litentry/litentry-cli:latest
target: deployed-client
Expand Down
Loading