File tree Expand file tree Collapse file tree 6 files changed +120
-0
lines changed Expand file tree Collapse file tree 6 files changed +120
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Frontend macOS 13
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ workflow_dispatch :
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ frontend :
14+ runs-on : macos-13
15+ steps :
16+ - name : Git checkout
17+ uses : actions/checkout@v5
18+
19+ - name : Frontend build
20+ uses : ./.github/actions/frontend-build
Original file line number Diff line number Diff line change 1+ name : Frontend macOS 14
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ workflow_dispatch :
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ frontend :
14+ runs-on : macos-14
15+ steps :
16+ - name : Git checkout
17+ uses : actions/checkout@v5
18+
19+ - name : Frontend build
20+ uses : ./.github/actions/frontend-build
Original file line number Diff line number Diff line change 1+ name : Frontend macOS 15
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ workflow_dispatch :
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ frontend :
14+ runs-on : macos-15
15+ steps :
16+ - name : Git checkout
17+ uses : actions/checkout@v5
18+
19+ - name : Frontend build
20+ uses : ./.github/actions/frontend-build
Original file line number Diff line number Diff line change 1+ name : Frontend macOS latest
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ workflow_dispatch :
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ frontend :
14+ runs-on : macos-latest
15+ steps :
16+ - name : Git checkout
17+ uses : actions/checkout@v5
18+
19+ - name : Frontend build
20+ uses : ./.github/actions/frontend-build
Original file line number Diff line number Diff line change 1+ name : Frontend Ubuntu 22.04
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ workflow_dispatch :
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ frontend :
14+ runs-on : ubuntu-22.04
15+ steps :
16+ - name : Git checkout
17+ uses : actions/checkout@v5
18+
19+ - name : Frontend build
20+ uses : ./.github/actions/frontend-build
Original file line number Diff line number Diff line change 1+ name : Frontend Ubuntu 24.04 ARM
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ workflow_dispatch :
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ frontend :
14+ runs-on : ubuntu-24.04-arm
15+ steps :
16+ - name : Git checkout
17+ uses : actions/checkout@v5
18+
19+ - name : Frontend build
20+ uses : ./.github/actions/frontend-build
You can’t perform that action at this time.
0 commit comments