build(deps): Bump actions/checkout from 4.2.1 to 4.2.2 #359
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: 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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
- name: Setup Node | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
- name: Setup Node | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
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 |