Triggered by push to refs/heads/main by @BK1031 #26
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: build | |
run-name: Triggered by ${{ github.event_name }} to ${{ github.ref }} by @${{ github.actor }} | |
on: [push] | |
jobs: | |
all_build_job: | |
runs-on: ubuntu-latest | |
name: all | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
- name: Dashboard | |
run: | | |
cd dashboard | |
npm ci | |
npm run build | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.0' | |
- name: Bahrain | |
run: | | |
cd bahrain | |
go get . | |
go build | |
- name: Jeddah | |
run: | | |
cd jeddah | |
go get . | |
go build | |
- name: GR24 | |
run: | | |
cd gr24 | |
go get . | |
go build |