Skip to content

Commit

Permalink
Revert docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gRoussac committed Mar 8, 2024
1 parent 478b10e commit 8292483
Show file tree
Hide file tree
Showing 5 changed files with 6,118 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci-rust-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ jobs:
run: make check-lint

- name: Doc
run: |
mkdir docs
make doc
run: make doc

- name: Github pages 🚀
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6 #v4.4.1
Expand Down
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ integration-test:
cd tests/integration/rust && cargo test -- --test-threads=1 --nocapture

start-app:
cd examples/frontend/angular/ && npm install && npm run build-proxy-conf && npm start & \
cd examples/frontend/angular/ && npm ci && npm run build-proxy-conf && npm start & \
until [ $$(curl -s -o /dev/null -w "%{http_code}" http://localhost:4200) -eq 200 ]; do sleep 1; done

run-e2e-tests:
cd tests/e2e && npm install && npm test
cd tests/e2e && npm ci && npm test

e2e-test: start-app run-e2e-tests

Expand All @@ -44,10 +44,10 @@ doc:
npx typedoc --name api-wasm --out docs/api-wasm pkg/casper_rust_wasm_sdk.d.ts

build: pack doc
cd examples/frontend/angular/ && npm install && npm run build && cd .
cd examples/frontend/react/ && npm install && npm run build && cd .
cd examples/desktop/node/ && npm install && npx tsc index.ts && cd .
cd examples/desktop/electron && npm install && npm run build && cd .
cd examples/frontend/angular/ && npm ci && npm run build && cd .
cd examples/frontend/react/ && npm ci && npm run build && cd .
cd examples/desktop/node/ && npm ci && npx tsc index.ts && cd .
cd examples/desktop/electron && npm ci && npm run build && cd .

format:
cargo fmt
Expand Down
Empty file added docs/.gitkeep
Empty file.
Loading

0 comments on commit 8292483

Please sign in to comment.