Skip to content

chore(deps): bump github.com/urfave/cli from 1.22.15 to 1.22.16 in /verifier #227

chore(deps): bump github.com/urfave/cli from 1.22.15 to 1.22.16 in /verifier

chore(deps): bump github.com/urfave/cli from 1.22.15 to 1.22.16 in /verifier #227

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-ca:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.2
- name: Build
run: |
cd ca
make
build-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Build
run: |
cd client
make
build-fullnode:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Build
run: |
cd fullnode
make
build-provider:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Build
run: |
cd provider
make
build-portal:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up node.js
uses: actions/setup-node@v4
with:
node-version: 16
- name: Build
run: |
cd portal
npm install
npm run build