Skip to content

build(deps): bump bytes from 1.10.1 to 1.11.1 in /tools/web3rs-example #531

build(deps): bump bytes from 1.10.1 to 1.11.1 in /tools/web3rs-example

build(deps): bump bytes from 1.10.1 to 1.11.1 in /tools/web3rs-example #531

Workflow file for this run

name: Hoppscotch Endpoint Tests
on:
pull_request:
branches:
- main
- release/**
push:
branches:
- main
- release/**
tags:
- v*
workflow_dispatch:
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
setup-local-hedera:
name: Hoppscotch Endpoint Tests
runs-on: hiero-smart-contracts-linux-medium
permissions:
contents: write
actions: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- name: Install build tools
run: sudo apt-get update && sudo apt-get install -y make gcc g++
- name: Setup node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: 22
- name: Checkout repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install packages
run: npm ci
- name: Create .env file
run: cp ./packages/server/tests/localAcceptance.env .env
- name: Build Typescript
run: npx lerna run build
- name: Start the hedera local node
run: npx hedera start -d
- name: Stop the local node's relay
run: docker stop json-rpc-relay
- name: Start the local relay
run: npm run start &
- name: Run Hoppscotch Tests
run: npm run hopp