Skip to content

build(deps): Bump express from 4.19.2 to 4.20.0 in /ui #347

build(deps): Bump express from 4.19.2 to 4.20.0 in /ui

build(deps): Bump express from 4.19.2 to 4.20.0 in /ui #347

Workflow file for this run

name: Integration Tests
on:
workflow_dispatch:
pull_request:
jobs:
server-ganache:
name: server over Ganache integration tests
runs-on: smart-contracts-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@446798f8213ac2e75931c1b0769676d927801858 # v2.10.0
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
submodules: true
- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 18
- name: Install make
run: sudo apt-get update; sudo apt-get install build-essential -y
- name: Apply Sourcify server patch customizations
run: npm run server:patch
- name: Compile Sourcify server
working-directory: ./sourcify
run: |
npm ci
npm run build:lerna
- name: Install clean npm instance
run: npm ci
- name: Run npm test server
run: npm run test:server
server-local-node:
name: server over Hedera's local node integration tests
runs-on: smart-contracts-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@446798f8213ac2e75931c1b0769676d927801858 # v2.10.0
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
submodules: true
- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 18
- name: Install make
run: sudo apt-get update; sudo apt-get install build-essential -y
- name: Apply Sourcify server patch customizations
run: npm run server:patch
- name: Install npm dependencies
run: npm ci
- name: Start Hedera Local Node
run: npm run local-node:start
- name: Start Sourcify server
working-directory: ./sourcify
run: |
npm ci
npm run build:lerna
cp ../test/sourcify-chains.json ./services/server/dist/
(npm run server:start&)
- name: Wait for hedera-sourcify server
uses: iFaxity/wait-on-action@a7d13170ec542bdca4ef8ac4b15e9c6aa00a6866 # v1.2.1
with:
resource: http://127.0.0.1:5555/chains
- name: Start tests
run: npm run test:hedera