Skip to content

Commit e0296d7

Browse files
committed
CI/frontend: setup macos + ubuntu 22.04 and ubuntu ARM
1 parent ac94cbf commit e0296d7

File tree

6 files changed

+120
-0
lines changed

6 files changed

+120
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

0 commit comments

Comments
 (0)