mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Go to 1.22 CouchDB to 3.3.3 Fabric to 2.5.8 Fabric-CA to 1.5.11 Signed-off-by: David Enyeart <enyeart@us.ibm.com>
66 lines
1.9 KiB
YAML
66 lines
1.9 KiB
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
name: Lint 🎉
|
|
run-name: ${{ github.actor }} is linting fabric-samples 🎉
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ "main", "release-2.5" ]
|
|
pull_request:
|
|
branches: [ "main", "release-2.5" ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
GO_VER: '1.22'
|
|
NODE_VER: 18.x
|
|
JAVA_VER: 11.x
|
|
|
|
jobs:
|
|
go:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
|
|
steps:
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ env.GO_VER }}
|
|
- uses: actions/checkout@v4
|
|
- run: go install golang.org/x/tools/cmd/goimports@latest
|
|
- run: ci/scripts/lint-go.sh
|
|
|
|
typescript:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ env.NODE_VER }}
|
|
- run: ci/scripts/lint-typescript.sh
|
|
|
|
javascript:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ env.NODE_VER }}
|
|
- run: ci/scripts/lint-javascript.sh
|
|
|
|
java:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: ${{ env.JAVA_VER }}
|
|
- run: ci/scripts/lint-java.sh
|
|
|
|
shell:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: ci/scripts/lint-shell.sh
|