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

update wasm #12

Merged
merged 6 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 1 addition & 14 deletions .github/workflows/ci-data-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,11 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Node Cache
uses: actions/cache@v2
id: npm-and-yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
~/.npm
key: ${{ runner.os }}-node_modules-${{ hashFiles('/home/runner/work/**/package-lock.json', '/home/runner/work/**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node_modules-
- name: prepare env
id: runtest
run: |
npm install --save-dev mocha @types/mocha chai @types/chai
bash prepare_wasm.sh
npm install --save-dev mocha @types/mocha chai @types/chai
- name: run test
id: ci-test
run: |
Expand Down
2 changes: 1 addition & 1 deletion ckb-light-wasm-demo
9 changes: 9 additions & 0 deletions prepare_wasm.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
set -x
git submodule init
git submodule update
cd ckb-light-wasm-demo
git log -1
git submodule init
git submodule update
cd ckb-light-client
git log -1
cd ../
bash build.sh
12 changes: 0 additions & 12 deletions tsconfig.json

This file was deleted.

Loading