Feature owen sdk ts rooch client #983
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check-Build-Test | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- 'docs/**' | |
- 'fixtures/**' | |
- 'kube/**' | |
- '**.md' | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- 'docs/**' | |
- 'fixtures/**' | |
- 'kube/**' | |
- '**.md' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check_build_test: | |
name: Check-Build-Test | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: rooch-network/rooch/.github/actions/rust-setup@main | |
# with: | |
# fetch-depth: 0 | |
- name: Check code format | |
run: cargo fmt -- --check | |
- name: Lint rust sources | |
run: ./scripts/pr.sh -c | |
- name: Build | |
run: cargo build | |
- name: Execute rust tests | |
run: cargo nextest run --workspace --all-features | |
- name: Run CLI integration test | |
# cargo-nextest does not support the CLI integration test powered by Cucumber Rust. | |
# Use cargo test to run CLI integration tests. | |
# TODO: FIXME | |
run: cargo test -p testsuite --test integration | |
- name: Run Rooch init | |
run: cargo run --bin rooch init | |
- name: Execute stdlib tests | |
run: cargo run --bin rooch move test -p moveos/moveos-stdlib/moveos-stdlib/ | |
- name: Execute framework tests | |
run: cargo run --bin rooch move test -p crates/rooch-framework/ | |
- name: Build and test example projects | |
run: ./scripts/pr.sh -e | |
## Build and test sdk start | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.x' | |
- name: Cache Node.js modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.OS }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.OS }}-pnpm- | |
- name: Install SDK dependencies | |
run: cd sdk/typescript && npm install pnpm -g && pnpm install | |
- name: Gen SDK dependencie Code | |
run: cd sdk/typescript && pnpm gen | |
- name: Lint SDK | |
run: cd sdk/typescript && pnpm run lint | |
- name: Build SDK | |
run: cd sdk/typescript && pnpm run build | |
- name: Test SDK | |
run: cd sdk/typescript && pnpm run test | |
## Build and test sdk end | |
- uses: CatChen/check-git-status-action@v1 | |
with: | |
fail-if-not-clean: true # optional | |
push-if-not-clean: false # optional | |
targets: "." #optional | |