fix(gb-infra): Update Node workflow to run build step instead of tests
Some checks failed
GBCI / build (push) Failing after 5m54s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-04-27 17:43:24 -03:00
parent cc53c3620e
commit 82c8e6dcd3

View file

@ -21,31 +21,8 @@ jobs:
with:
toolchain: stable
- name: Run tests
run: cargo test --all-features
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build release binary
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --release --locked
# - name: Run tests
# uses: actions-rs/cargo@v1
# with:
# command: test
# args: --release
- name: Run build
run: cargo build --workspace --release --locked
- name: Deploy binary
run: |