Skip to content

Commit 47bc7b7

Browse files
authored
[chore]: use self hosted runner (#23)
- use the self hosted Mac mini runner
2 parents 1728ff4 + 78da7e6 commit 47bc7b7

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
build-codeedit-cli:
1414
name: Building CodeEdit CLI
15-
runs-on: macos-12
15+
runs-on: [self-hosted, macOS]
1616
steps:
1717
- name: Checkout Repository
1818
uses: actions/checkout@v2

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
deploy-codeedit-cli:
1111
name: Deploying CodeEdit CLI
12-
runs-on: macos-12
12+
runs-on: [self-hosted, macOS]
1313
steps:
1414
- name: Checkout Repository
1515
uses: actions/checkout@v2

.github/workflows/swiftlint.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ on:
99
- 'main'
1010
jobs:
1111
SwiftLint:
12-
runs-on: ubuntu-latest
12+
runs-on: [self-hosted, macOS]
1313
steps:
1414
- uses: actions/checkout@v1
1515
- name: GitHub Action for SwiftLint with --strict
16-
uses: norio-nomura/action-swiftlint@3.2.1
17-
with:
18-
args: --strict
16+
run: swiftlint --strict
17+
# uses: norio-nomura/action-swiftlint@3.2.1
18+
# with:
19+
# args: --strict

0 commit comments

Comments
 (0)