feat: Update chart to support upstream images #265
Workflow file for this run
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: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- 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 | |
- run: npm ci | |
- run: npm run test:server | |
server-local-node: | |
name: server over Hedera's local node integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Apply Sourcify server patch customizations | |
run: npm run server:patch | |
- 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@v1 | |
with: | |
resource: http://127.0.0.1:5555/chains | |
- name: Start tests | |
run: npm run test:hedera |