fabric-samples/.github/workflows/rest-sample.yaml
dependabot[bot] c9b221e4a9
Some checks are pending
Lint 🎉 / java (push) Waiting to run
Lint 🎉 / shell (push) Waiting to run
Lint 🎉 / go (push) Waiting to run
Lint 🎉 / typescript (push) Waiting to run
Lint 🎉 / javascript (push) Waiting to run
Test High Throughput / basic (push) Waiting to run
Test Network Basic 🔎 / basic (go) (push) Waiting to run
Test Network Basic 🔎 / basic (java) (push) Waiting to run
Test Network Basic 🔎 / basic (javascript) (push) Waiting to run
Test Network Basic 🔎 / basic (typescript) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (go, ca) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (go, cryptogen) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (java, ca) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (java, cryptogen) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (javascript, ca) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (javascript, cryptogen) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (typescript, ca) (push) Waiting to run
Test Network BFT Orderer 🍟 / basic (typescript, cryptogen) (push) Waiting to run
Test Network Events 💡 / events (go, events) (push) Waiting to run
Test Network Events 💡 / events (java, events) (push) Waiting to run
Test Network Events 💡 / events (javascript, events) (push) Waiting to run
Test Network HSM 🍏 / hsm (go) (push) Waiting to run
Test Network HSM 🍏 / hsm (java) (push) Waiting to run
Test Network HSM 🍏 / hsm (javascript) (push) Waiting to run
Test Network HSM 🍏 / hsm (typescript) (push) Waiting to run
Kubernetes Test Network 🍒 / ccaas-java (push) Waiting to run
Kubernetes Test Network 🍒 / ccaas-external (push) Waiting to run
Kubernetes Test Network 🍒 / k8s-builder (push) Waiting to run
Kubernetes Test Network 🍒 / multi-namespace (push) Waiting to run
Kubernetes Test Network 🍒 / bft-orderer (push) Waiting to run
Test Network Ledger 🥑 / basic (go, ledger) (push) Waiting to run
Test Network Ledger 🥑 / basic (javascript, ledger) (push) Waiting to run
Test Network Ledger 🥑 / basic (typescript, ledger) (push) Waiting to run
Test Network Off Chain 🍔 / off-chain (go) (push) Waiting to run
Test Network Off Chain 🍔 / off-chain (java) (push) Waiting to run
Test Network Off Chain 🍔 / off-chain (javascript) (push) Waiting to run
Test Network Off Chain 🍔 / off-chain (typescript) (push) Waiting to run
Test Network Private 🔒 / private (go, private) (push) Waiting to run
Test Network Private 🔒 / private (java, private) (push) Waiting to run
Test Network Private 🔒 / private (typescript, private) (push) Waiting to run
Test Network SBE 🎵 / SBE (java, sbe) (push) Waiting to run
Test Network SBE 🎵 / SBE (typescript, sbe) (push) Waiting to run
Test Network Secured 🔔 / secured (go, secured) (push) Waiting to run
Bump actions/checkout from 6 to 7 (#1426)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-22 21:22:41 +01:00

58 lines
1.8 KiB
YAML

#
# SPDX-License-Identifier: Apache-2.0
#
name: REST Sample 🐧
run-name: ${{ github.actor }} is testing the REST Sample 🐧
env:
NODE_VER: "lts/*"
on:
workflow_dispatch:
push:
branches: ["main", "release-2.5"]
paths: ["asset-transfer-basic/rest-api-typescript/**"]
pull_request:
branches: ["main", "release-2.5"]
paths: ["asset-transfer-basic/rest-api-typescript/**"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-sample:
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
steps:
- name: Checkout
uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Install REST Sample Dependencies
working-directory: asset-transfer-basic/rest-api-typescript
run: npm install
- name: Build REST Sample Application
run: npm run build
working-directory: asset-transfer-basic/rest-api-typescript
- name: Test REST Sample Application
run: npm test
working-directory: asset-transfer-basic/rest-api-typescript
- name: Build REST Sample Docker Image
run: docker build -t ghcr.io/hyperledger/fabric-rest-sample .
working-directory: asset-transfer-basic/rest-api-typescript
- name: Publish REST Sample Docker Image
if: github.event_name == 'push' && (github.ref == 'refs/heads/main')
run: |
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
docker push ghcr.io/hyperledger/fabric-rest-sample:latest
working-directory: asset-transfer-basic/rest-api-typescript