Merge pull request #47 from BitGo/BTC-1451.add-updateoutputwithdescri… #123
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: wasm-miniscript | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
- rel/** | |
workflow_dispatch: | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup node ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
- name: Install wasm-pack | |
run: | | |
rustup component add rustfmt | |
cargo install wasm-pack | |
- name: Build Info | |
run: | | |
echo "node $(node --version)" | |
echo "npm $(npm --version)" | |
git --version | |
echo "base ref $GITHUB_BASE_REF" | |
echo "head ref $GITHUB_HEAD_REF" | |
- name: Fetch Base Ref | |
run: | | |
git fetch origin $GITHUB_BASE_REF | |
- name: Install Packages | |
run: npm ci --workspaces --include-workspace-root | |
- name: test | |
run: npx --version | |
- name: build packages | |
run: npm --workspaces run build | |
- name: Check Source Code Formatting | |
run: npm run check-fmt | |
- name: Unit Test | |
run: npm --workspaces test |